.user-header {
    background-color: #1E3A61;  
    color: #FFFFFF;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;  
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.user-header .left-section {
    display: flex;
    align-items: center;
}

.user-header img {
    width: 80px;
    height: 80px;
    margin-right: 20px;
}

.user-header h1 {
    margin: 0;
    font-size: 1.5em;
    color: #FFFFFF;
    text-decoration: none;
}

.user-header .left-section a {
    color: #ecf0f1;
    text-decoration: none;
}

.user-header .left-section a:visited {
    color: #ecf0f1;
    text-decoration: none;
}

.user-header .menu {
    display: flex;
    gap: 20px;
}

.user-header .menu a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1em;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.user-header .menu a:hover {
    background-color: #264c73;  
}

.user-header .contact-info {
    text-align: right;  
    font-size: 0.9em;
}

.user-header .contact-info a {
    display: block;  
    color: #FFFFFF;
    text-decoration: none;
    margin-bottom: 5px;  
}

.user-header .contact-info .phone {
    font-size: 1.5em;  
    margin-bottom: 5px;  
}

 
.button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    color: #FFFFFF;
    background-color: #1E3A61;  
    border: none;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.button-noStretchMobile {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    color: #FFFFFF;
    background-color: #1E3A61;  
    border: none;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.button:visited {
    color: #FFFFFF;
}

.button:hover {
    background-color: #264c73;  
}

 
.button-destructive {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease;
    background-color: #C9302C;  
}

breadcrumb {
    margin: 0;
    padding-bottom: 10px;
    font-size: 0.8em;
    display: block;
}

.button-destructive:hover {
    background-color: #D9534F;  
}

 
input[type="text"], input[type="password"], input[type="email"], textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1em;
}

input[type="submit"] {
    background-color: #1E3A61;  
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 1em;
    transition: background 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #264c73;  
}

 
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    margin-top: 20px;  
    background-color: #ecf0f1;  
}

table th, table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #dddddd;  
}

table th {
    background-color: #1E3A61;  
    color: #FFFFFF;
}

.full-width-table th {
    background-color: #dddddd;  
    color: #1E3A61;  
    font-size: 1.4em;
}

table tr:nth-child(even) {
    background-color: #f2f2f2;  
}

table tr:hover {
    background-color: #dddddd;  
}

table td a {
    color: #1E3A61;  
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

table td a:visited {
    color: #2980b9;  
}

table td a:hover {
    color: #264c73;  
}

table tr {
    color: #1E3A61;  
}

 
.dropdown-container {
    position: relative;
    display: inline-block;
}

 
.dropdown-button {
    background-color: #1E3A61;  
    color: #FFFFFF;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.dropdown-button:hover {
    background-color: #264c73;  
}

 
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ecf0f1;  
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 4px;
    overflow: hidden;
}

.dropdown-content a {
    color: #1E3A61;  
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #dddddd;  
}

 
.dropdown-container:hover .dropdown-content {
    display: block;
}

.dashboard-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));  
    gap: 20px;
    margin-top: 20px;
}

.tile {
    color: #1E3A61;  
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;  
    overflow: hidden;  
    padding-top: calc(10px + 4em);  
    padding-bottom: 10;  
    width: 100%;  
    box-sizing: border-box;  
}

.tile h2 {
    background-color: #1E3A61;  
    margin: 0;
    padding: 10px 20px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    color: #FFFFFF;
    font-size: 1.2em;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    box-sizing: border-box;
    line-height: 1.2em;  
}

.tile blueTitle {
    background-color: #1E3A61;  
    margin: 0;
    padding: 10px 20px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    color: #FFFFFF;
    font-size: 1.2em;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    box-sizing: border-box;
    line-height: 1.2em;  
}

.tile yellowTitle {
    background-color: #F7CE46;  
    margin: 0;
    padding: 10px 20px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    color: #000000;
    font-size: 1.2em;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    box-sizing: border-box;
    line-height: 1.2em;  
}

.tile h3 {
    margin: 0;
    font-size: 1.2em;
    color: #1E3A61;  
}

larger-text-old {
    font-size: 1.5em;
    color: #34495e;  
    margin-top: 5px;
}

larger-text {
    background-color: #34495e;  
    margin: 0;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 20px;
    padding-left: 10px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    color: #FFFFFF;
    font-size: 1.5em;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    box-sizing: border-box;
}

.tile p.small-text {
    font-size: 1em;  
    color: #1E3A61;  
}

small-text-smaller {
    font-size: 0.7em;  
    color: #FFFFFF;  
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    box-sizing: border-box;
    padding-bottom: 5px;
}

.tile ul {
    list-style-type: disc;  
}

.tile ol {
    list-style-type: decimal;  
}

.tile ul, .tile ol {
    margin: 10px auto;  
    display: inline-block;  
    text-align: left;  
    color: #1E3A61;  
}

.tile ul li, .tile ol li {
    margin-bottom: 5px;  
    font-size: 0.9em;  
    color: #1E3A61;  
    padding-left: 20px;  
    text-indent: -20px;  
}

.tile ul li::marker, .tile ol li::marker {
    color: #1E3A61;  
}
.tile input[type="color"] {
    width: 100%;
    height: 40px;
    margin-bottom: 10px;
    cursor: pointer;
    border: 1px solid #dddddd;  
    border-radius: 5px;
}

.tile button {
    width: 100%;
    padding: 8px;
    font-size: 14px;
    cursor: pointer;
    background-color: #1E3A61;  
    color: #FFFFFF;
    border: none;
    border-radius: 5px;
}

.tile button a {
    color: #FFFFFF;
}
.tile button a:visited {
    color: #FFFFFF;
}

.tile button:hover {
    background-color: #264c73;  
}

.form-actions {
    margin-top: 20px;
    text-align: center;
}

.button-primary {
    background-color: #1E3A61;
    color: #FFFFFF;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
}

.button-secondary {
    background-color: #D9534F;  
    color: #FFFFFF;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.button-secondary:hover {
    background-color: #C9302C;  
    color: #FFFFFF;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

 
.toggle-icon {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.toggle-icon::before {
    content: '☰';  
    font-size: 1.5em;
    margin-right: 10px;
    display: none;  
}

 
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #ecf0f1;  
    flex: 1;   
}

.container {
    display: flex;
    flex: 1;
}

.content {
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
    overflow: auto;  
}

.site-footer {
    background-color: #1E3A61;  
    color: #FFFFFF;
    padding: 20px 0;
    font-size: 14px;
    margin-top: auto;  
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    flex: 1;
    margin: 0 20px;
}

.footer-section h2 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.footer-section p, .footer-section a {
    color: #FFFFFF;
    text-decoration: none;
}

.footer-section a:hover {
    color: #2980b9;  
}

.footer-section ul {
    list-style-type: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #FFFFFF;
    transition: color 0.3s ease;
}

.footer-bottom {
    text-align: center;
    background-color: #1E3A61;  
    color: #FFFFFF;
}

.footer-bottom p {
    margin: 0;
}

.container {
    display: flex;
    min-height: 100vh;  
    flex-direction: row;  
    flex: 1;  
}

 
.sidebar {
    width: 250px;
    background-color: #1E3A61;  
    color: #FFFFFF;
    padding: 20px;
    box-sizing: border-box;
    position: sticky;
    top: 0;
    height: 100vh;
}

.sidebar h2 {
    margin-top: 0;
    font-size: 1.5em;
    color: #FFFFFF;
    cursor: pointer;  
}

#sidebarMenu {
    display: block;  
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
}

.sidebar ul li {
    margin: 15px 0;
}

.sidebar ul li a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.1em;
    display: block;
    padding: 10px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.sidebar ul li a:hover {
    background-color: #264c73;  
}

.sidebar ul li a:visited {
    color: #FFFFFF;
}

.sidebar a:visited {
    color: #FFFFFF;
}

.sidebar a {
    color: #FFFFFF;
}

.sidebar a.active {
    font-weight: bold;
    font-size: 1.2em;  
}

 
.content {
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
}

.content h1 {
    margin-top: 0;
    font-size: 2em;
    color: #1E3A61;  
}

.content p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #34495e;  
}

.content-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;  
    width: 100%;  
    box-sizing: border-box;  
}

.text-content {
    flex: 1;
    width: 100%;  
    box-sizing: border-box;  
}

.image-content {
    margin-top: 20px;  
    margin-left: 20px;
    margin-right: 20px;
    box-sizing: border-box;  
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 10px;  
    }

    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        margin-bottom: 20px;  
    }

    #sidebarMenu {
        display: none;  
    }

    .toggle-icon::before {
        display: inline-block;
    }

    .menu-icon {
        display: inline-block;
        font-size: 1.5em;
        margin-right: 10px;
    }

    .admin-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .admin-header .quick-links {
        flex-wrap: wrap;
        gap: 10px;
    }

     
    .dashboard-tiles {
        grid-template-columns: 1fr;  
        gap: 15px;  
    }

     
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        margin: 10px 0;
        width: 100%;
    }

     
    .button, input[type="submit"], input[type="text"], input[type="password"], input[type="email"], textarea {
        width: 100%;
        box-sizing: border-box;
        margin-bottom: 10px;
    }

     
    body, .footer-section h2, .admin-header h1, .tile h3 {
        font-size: 90%;  
    }

     
    table {
        width: 100%;
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .full-width-table th {
        width: 100%;  
        display: block;  
        text-align: left;  
    }

    .full-width-table tbody {
        display: block;  
        width: 100%;
    }

    .full-width-table td {
        display: block;  
        width: 100%;  
    }

    .full-width-table {
        width: 100%;  
        display: block;  
        text-align: left;  
        overflow-x: auto;
        white-space: nowrap;
    }

     
    .user-header {
        flex-direction: column;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .user-header img {
        margin: 0 auto 10px auto;  
    }

    .user-header .menu {
        justify-content: center;  
        flex-wrap: wrap;
    }

    .user-header .contact-info {
        text-align: center;  
    }

     
    img, iframe {
        max-width: 100%;
        height: auto;
    }

    .dropdown-container {
        width: 100%;  
    }

     
    .dropdown-button {
        width: 100%;  
    }

     
    .dropdown-content {
        min-width: 100%;  
    }
}

@media (min-width: 768px) {  
    .content-container {
        flex-direction: row;  
        justify-content: space-between;  
        align-items: flex-start;  
        width: 100%;  
    }

    .text-content {
        margin-left: 20px;  
        align-items: flex-start;  
        width: 100%;  
        box-sizing: border-box;  
    }

    .image-content {
        margin-bottom: 0;  
        margin-top: 0;  
        align-items: flex-end;  
        box-sizing: border-box;  
    }

    .menu-icon {
        display: none;  
    }

    .full-width-table {
        text-align: left;  
    }
}
