﻿.applications-container {
    height: inherit;
    width: inherit;
    padding: 20px;
    background-image: linear-gradient(to top right, #F28E47, #F5B93F);
    opacity: 1;
    position: absolute;
    overflow: hidden;
    align-content: center;
}

DELETE IF NOT USED
.applications-header {
    display: block;
    text-align: center;
    margin-top: 20px;
}

.applications-header{
    overflow-y: scroll;
    height: calc(100% - 45px);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px
}

Project names/Application level

.applications-container {
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-sizing: border-box;
    overflow-y: auto; Mobile scroll
    display: flex;
    flex-direction: column;
}

.application-intro {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}
.colapsible-item {
    height: 70px;
    border-bottom: 1px solid #ebebeb;
    background-color: white;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /align-content: center;
    margin: revert;
    padding: revert;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    max-width: 95%;
    margin: 10px;
    cursor: pointer;
}

    .colapsible-item a {
        text-decoration: none;
        color: #000;
        width: 100%;
    }

        .colapsible-item a:hover {
            cursor: pointer;
        }

    .colapsible-item p {
        font-weight: 800;
        font-size: 28px;
        line-height: 40px;
        padding-left: 3%;
        margin: inherit;
        text-align: unset;
    }

    .colapsible-item h3 {
        margin: auto;
        padding: revert;
        align-self: center;
        padding-left: 5px;
        width: 100%;
    }

.colapsible-panel {
    width: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    background-color: white;
    border-radius: 20px;
    height: 100%;
    padding-left: 0;
}

    .colapsible-panel p {
        font-size: 16px;
        width: calc(100% - 35px);
        margin: inherit;
    }

    CHECK IF BELOW IS USED OTHERWISE DELETE
    .colapsible-panel h4 {
        font-size: 16px;
        font-weight: bold;
        width: 100%;
        align-self: center;
        padding: 20px;
        margin: inherit;
    }

    .colapsible-panel .collapse-icon {
        width: 40px;
        text-align: center;
    }

.colapsible-content {
    width: 100%;
    margin: 0px;
    padding: 5px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    font-size: 14px;
 
}

.application-tile {
    width: calc(100% / 4);
    height: 150px;
    height: auto;
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    flex-wrap: wrap;
}

    .application-tile a {
        display: block;
        width: 100%;
        height: 100%;
        cursor: pointer;
    }

        .application-tile a img {
            width: 100%;
            height: auto;
            
        }

        .application-tile a p {
            font-size: 14px;
            color: #6C7278;
        }


        SAMPLE PAGE

.sampleMain-Container {
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto; Mobile scroll
    background-color: #f0f0f0;
}

.sample-container {
    margin: 0 auto;
    padding: 20px;
    background-color: #f0f0f0;
    box-sizing: border-box;
    overflow-y: auto; Mobile scroll
}

.sample-listItems {
    width: 100%;
    max-width: 600px;  Ensures it doesn't get too wide 
    height: auto;
    background-color: white;
    padding-bottom: 20px;
    margin: 0 auto;  Center align the list items 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    text-align: center;
    padding-left: 20px;
    display: flex;
flex-direction: row;
flex-wrap: wrap;
    justify-content: center;
}

    .sample-listItems h3 {
        margin-top: 10px;
        padding-bottom: 5px;
    }

        .sample-listItems img {
            padding-bottom: 10px;
        }

.redirectLinks-sample {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

        START IF APPLICATIONS IS EMPTY
        .emptyApp-panel {
            width: 100%;
            display: flex;
            flex-direction: column;
            background-color: white;
            border-radius: 20px;
            height: 100%;
            padding: 20px;
        }

    .emptyApp-panel h4 {
        font-size: 16px;
        width: calc(100% - 35px);
        margin: inherit;
        padding-bottom: 15px;
    }

    .emptyApp-panel li {
        font-size: 16px;
        width: calc(100% - 35px);
        margin: inherit;
        padding-bottom: 10px;
    }

    .emptyApp-panel span {
        font-weight: 600;
    }

    .emptyApp-panel p {
        font-size: 16px;
        width: calc(100% - 35px);
        margin: inherit;
    }

.emptyApp-panel-style {
    display: flex;
    flex-direction : row;
}

    .emptyApp-panel-style a {
        font-size: 16px;
        color: #F28E47;
    }