
/* Load Poppins from Google Fonts (works on iPhone when network allowed) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

html {
  /*font-size: 14px;*/
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 170px;
    /* Use a fallback stack so iOS uses a similar system font if Poppins fails */
    font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.navbar {
    background-color: #25325B;
}

footer {
    background-color: #25325B;
    padding-top: 20px;
}

    footer .social-icons {
        display: flex;
        justify-content: center; /* Centers horizontally */
        align-items: center; /* Centers vertically if the div has height */
        gap: 30px; /* Space between icons */
       
    }

    footer .social-icons a {
        color: #FFF;
        font-size: 1.6em;
        margin: 0 10px;
        text-decoration: none;
    }

        footer .social-icons a:hover {
            color: #FFF; /* Example hover color */
        }




h1,
h2,
h3,
h4,
h5 {
    font-family: "Bree Serif", serif;
    font-weight: 300;
    font-size: 2rem;
    color: #253163;
}

h2 {
    font-size: 1.6rem;
}

h3 {
    font-size: 1.2rem;
}

h4 {
    font-size: .8rem;
    /* Ensure Poppins is preferred but provide fallbacks for iOS */
    font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}


a, .btn-link {
    color: rgba(76, 123, 237, .8);
    text-decoration: none
}

    a:hover, .btn-link:hover {
        color: rgba(76, 123, 237, 1);
        text-decoration: underline
    }

input[type=search]:focus {
    outline: solid #25325b 2px;
    box-shadow: none;
}



.fa-file-excel {
    color: #107B10;
}

.fa-file-word {
    color: #2B569A;
}

.fa-file-pdf {
    color: #FF0000;
}

.fa-file-image {
    color: #45B4FC;
}

.DocTypeList {
    font-size: .9em;
}

    .DocTypeList .Parent {
        text-transform: uppercase;
        letter-spacing: 1px;
        padding-bottom: .5em;
        font-size: .9em;
        font-weight: bold;
    }

    .DocTypeList .Child {
        /*padding-left: 2em;*/
        padding-bottom: .6em;
    }

    .DocTypeList .Child2 {
        padding-left: 4em;
        padding-bottom: .4em;
    }



.ResourceDocFile {
    padding-bottom: 1em;
    margin-bottom: 1em;
    border-bottom: dotted 1px #BBB;
}

    .ResourceDocFile .FileIcon {
        margin-right: 10px;
    }

        .ResourceDocFile .FileIcon i {
        }


        .ResourceDocFile .FileInfo .FileLink {
        }

        .ResourceDocFile .FileInfo .FileDate {
            font-size: .8em;
        }




.form-group .k-widget,
.form-group .k-input,
.form-group .k-textbox,
.form-group .text-box {
    width: 100%;
    font-size: 12px;
}

