body {
    margin-top: 5vw;
    background-color: #ffffff;
    min-height: 100vh;
}

#header-section {
    padding: 0 2.2vw;
    font-size: clamp(14px, 1vw, 18px);
    background: rgba(248, 248, 248, 0.6);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    min-height: 60px;
    display: flex;
    align-items: center;
}

#header-logo {
    width: 6.5vw;
    min-width: 80px;
    max-width: 120px;
    padding: 0.9vw 0;
}

#notification-icon {
    z-index: 10001;
    padding: 0.5vw 1vw 0 0;
}

#user-picture {
    z-index: 10000;
}

#main-section {
    padding: 0 3vw;
    min-height: calc(100vh - 200px);
}

#sub-div-header {
    padding: 1vw 0;
    font-size: clamp(20px, 1.8vw, 32px);
    color: #282828;
}

#footer-section {
    padding: clamp(20px, 3vw, 40px);
    color: #202020;
    font-size: clamp(14px, 1.35vw, 20px);
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

#footer-section div div h5 {
    font-size: clamp(16px, 1.5vw, 24px);
}

.footer-logo {
    width: clamp(40px, 4vw, 60px);
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #ffffff;
    border-radius: 12px;
    padding: 1px;
    margin: clamp(15px, 1.5vw, 30px) 0;
    border: 1px solid rgba(199, 199, 199, 0.8);
}

thead {
    background: rgba(249, 250, 251, 0.9);
    border-radius: 12px 12px 0 0;
}

th {
    text-align: left;
    padding: clamp(12px, 1.2vw, 20px) clamp(14px, 1.4vw, 24px);
    color: #374151;
    font-weight: 600;
    border-bottom: 2px solid rgba(224, 224, 224, 0.8);
    position: relative;
    background: rgba(249, 250, 251, 0.9);
    font-size: clamp(12px, 0.95vw, 16px);
}

td {
    padding: clamp(12px, 1.2vw, 20px) clamp(14px, 1.4vw, 24px);
    border-bottom: 1px solid rgba(224, 224, 224, 0.4);
    transition: all 0.2s ease-in-out;
    background: #ffffff;
    vertical-align: middle;
}

/* Table Border Radius */
th:first-child {
    border-top-left-radius: 12px;
}

th:last-child {
    border-top-right-radius: 12px;
}

tr:last-child td:first-child {
    border-bottom-left-radius: 12px;
}

tr:last-child td:last-child {
    border-bottom-right-radius: 12px;
}

/* Table Borders */
th:not(:last-child),
td:not(:last-child) {
    border-right: 1px solid rgba(224, 224, 224, 0.4);
}

tr:last-child td {
    border-bottom: none;
}

tr:nth-child(even) {
    background: rgba(249, 250, 251, 0.5);
}

td .d-flex {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 !important;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    body {
        margin-top: 70px;
    }
}

@media (max-width: 992px) {
    body {
        margin-top: 65px;
    }
}

@media (max-width: 768px) {
    body {
        margin-top: 8vw;
    }

    #header-logo {
        width: clamp(90px, 11vw, 120px);
    }

    #header-section {
        padding: 0 1.5vw;
        font-size: clamp(14px, 1.8vw, 18px);
    }

    #sub-div-header {
        padding: 1.5vw 0 0 0;
        font-size: clamp(20px, 2.5vw, 28px);
    }

    th,
    td {
        padding: clamp(12px, 2vw, 18px) clamp(14px, 2.2vw, 20px);
        font-size: clamp(12px, 1.4vw, 16px);
    }
}

@media (max-width: 576px) {
    body {
        margin-top: 18vw;
    }

    #header-logo {
        width: clamp(100px, 17vw, 130px);
    }

    #header-section {
        padding: 0 1vw;
        font-size: clamp(14px, 2vw, 16px);
    }

    #sub-div-header {
        padding: 1.5vw 0 0 0;
        font-size: clamp(18px, 2.8vw, 24px);
    }

    th,
    td {
        padding: clamp(10px, 3vw, 16px) clamp(12px, 3.2vw, 18px);
        font-size: clamp(12px, 1.6vw, 14px);
    }
}

@media (hover: none) {

    td,
    th {
        min-height: 44px;
    }

    #notification-icon,
    #user-picture {
        padding: 8px;
    }
}
