html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}


body {
    margin-bottom: 60px;
}

.info-msg,
.success-msg,
.warning-msg,
.error-msg {
    margin: 10px 0;
    padding: 10px;
    border-radius: 3px 3px 3px 3px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.info-msg {
    color: #059;
    background-color: #BEF;
}

.success-msg {
    color: #270;
    background-color: #DFF2BF;
}

.warning-msg {
    color: #9F6000;
    background-color: #FEEFB3;
}

.error-msg {
    color: #D8000C;
    background-color: #FFBABA;
}

div.column {
    display: inline-block;
    width: 33%; /* Set to your desired width */
    margin: 0; /* Remove any margin */
    padding: 0; /* Remove any padding */
}

iframe.profile {
    display: block;4
    width: 100%;
    height: 300px; /* Set to your desired height */
    border: 2px solid silver; /* Apply a silver border */
    margin: 0; /* Remove any margin */
    padding: 0; /* Remove any padding */
}

div.scroll-container {
    display: flex;
    flex-wrap: wrap;
}

.uploaded-files {
    display: flex;
    flex-wrap: nowrap; /* Keeps elements in a row */
}


.IndexImg {
    width: 200px !important;
    height: auto !important;
}


.IndexImageDiv {
    width: 50px;
    height: 50px;
}

div.scroll-container img {
    padding: 10px;
}

.dropdown-content {
    display: none;
}


.MainHeader {
    width: 100%;
    height: 10vh;
    display: flex;
    justify-content: left;
    align-items: center;
    margin: 0;
}

    .MainHeader .h1 {
        font-size: 40px;
        font-weight: 500;
        color: #404040;
        border-right: 4px solid #000;
        animation: cursor 1s infinite step-end, typing 15s infinite steps(16);
        white-space: nowrap;
        overflow: hidden;
    }

@keyframes cursor {
    0%, 100% {
        border-color: transparent;
    }

    50% {
        border-color: #000;
    }
}

@keyframes typing {
    0% {
        width: 0ch
    }
    /*Text is hidden*/
    30% {
        width: 32ch;
    }
    /*The enitre header will be typed out*/
    80% {
        width: 32ch;
    }
    /*Text stays visible*/
    90% {
        width: 0ch;
    }
    /*Text is deleted*/
    100% {
        width: 0ch;
    }
    /*Text stays hidden*/
}



.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1px;
    margin-bottom: 10px;

}

.grid-child{
    font-size: 20px;
    text-align: center;
}




.grid-child {
    position: relative;
    display: inline-block;
    margin: 20px;
}

    .grid-child a {
        color: white;
        font-family: Helvetica, sans-serif;
        font-weight: bold;
        font-size: 36px;
        text-align: center;
        text-decoration: none;
        background-color: #FFA12B;
        display: block;
        position: relative;
        padding: 20px 40px;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        text-shadow: 0px 1px 0px #000;
        filter: dropshadow(color=#000, offx=0px, offy=1px);
        -webkit-box-shadow: inset 0 1px 0 #FFE5C4, 0 10px 0 #915100;
        -moz-box-shadow: inset 0 1px 0 #FFE5C4, 0 10px 0 #915100;
        box-shadow: inset 0 1px 0 #FFE5C4, 0 10px 0 #915100;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
    }

        .grid-child a:active {
            top: 10px;
            background-color: #F78900;
            -webkit-box-shadow: inset 0 1px 0 #FFE5C4, inset 0 -3px 0 #915100;
            -moz-box-shadow: inset 0 1px 0 #FFE5C4, inset 0 -3pxpx 0 #915100;
            box-shadow: inset 0 1px 0 #FFE5C4, inset 0 -3px 0 #915100;
        }

    .grid-child:after {
        content: "";
        height: 100%;
        width: 100%;
        padding: 4px;
        position: absolute;
        bottom: -15px;
        left: -4px;
        z-index: -1;
        background-color: #2B1800;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
    }



    /* Styled table */
.styled-table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    font-family: sans-serif;
    min-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    width: 100%;
}

    .styled-table thead tr {
        background-color: #3D90C1;
        color: #ffffff;
        text-align: left;
    }

    .styled-table th,
    .styled-table td {
        padding: 12px 15px;
    }

    .styled-table tbody tr {
        border-bottom: 1px solid #dddddd;
    }

        .styled-table tbody tr:nth-of-type(even) {
            background-color: #f3f3f3;
        }

        .styled-table tbody tr:last-of-type {
            border-bottom: 2px solid #009879;
        }

        .styled-table tbody tr.active-row {
            font-weight: bold;
            color: #009879;
        }

    /* styled table end*/


/* collapsible */




/* footer */

/*** Footer ***/


footer {
    background-color: #292c31;
    padding: 60px 0;
    color: #62656a;
    margin-top: 550px;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 2px;
    transition: .3s;
}

    .footer .btn.btn-social:hover {
        color: var(--primary);
        border-color: var(--light);
    }

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

    .footer .btn.btn-link::before {
        position: relative;
        content: "\f105";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin-right: 10px;
    }

    .footer .btn.btn-link:hover {
        letter-spacing: 1px;
        box-shadow: none;
    }

.footer .form-control {
    border-color: rgba(255,255,255,0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

    .footer .copyright a {
        color: var(--light);
    }

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

    .footer .footer-menu a:last-child {
        margin-right: 0;
        padding-right: 0;
        border-right: none;
    }





