*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
:root {
    --blue: #0e85ff;
    --cyan: #1dc4dd;
    --text: #111827;
    --muted: #667085;
    --border: #d9dfe7;
}
/*body{
    font-family:'Inter',sans-serif;
    min-height:100vh;
    overflow-x:hidden;

    background:
    url("assets/background.webp")
    center center / cover
    no-repeat fixed;
}*/

/* HEADER */

.top-header{
    height:90px;

    display:flex;
    justify-content:center;
    align-items:center;

    position:relative;
}

.logo-space{
    position:absolute;
    left:8px;
    top:10px;
}

.logo-space img{
    width:120px;
    max-width:100%;
}

.top-header h2{
    font-size:17px;
    font-weight:700;
    color:#111827;
}

.logout-btn{

    position:absolute;
    right:40px;

    padding:11px 30px;

    border-radius:30px;

    background:rgba(255,255,255,.35);

    border:1px solid rgba(0,0,0,.25);

    cursor:pointer;

    font-size:15px;

    transition:.3s;
}

.logout-btn:hover{
    background:rgba(255,255,255,.6);
}

.header-line{
    height:1px;
    background:rgba(0,0,0,.12);
}

/* HERO */

.hero{
    width:1200px;
    margin:40px auto 20px;
}

.hero h1{
    font-size:56px;
    line-height:1;

    font-weight:800;

    color:#083d79;
}

.hero p{

    margin-top:12px;

    font-size:21px;

    color:#222;
}
/* Card & Glassmorphism */
.glass-card {
    background: #fff; /*var(--card-bg);*/
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

    .glass-card:hover {
        border-color: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }
/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Data Table */
.premium-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 0.5rem;
}

    .premium-table th {
        text-align: left;
        padding: 1rem;
        color: /*var(--text-muted)*/ #111;
        font-weight: 500;
    }

    .premium-table td {
        padding: 1rem;
        background: /*rgba(30, 41, 59, 0.4)*/ #fff;
    }

    .premium-table tr td:first-child {
        border-radius: 0.5rem 0 0 0.5rem;
    }

    .premium-table tr td:last-child {
        border-radius: 0 0.5rem 0.5rem 0;
    }

    .premium-table tr:hover td {
        background: /*rgba(30, 41, 59, 0.6)*/ #aae1e785;
    }

.sortable {
    cursor: pointer;
    user-select: none;
}

    .sortable:hover {
        color: /*var(--text-main)*/ #111;
    }

.pagination-btn {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: var(--transition);
}

    .pagination-btn:hover:not(:disabled) {
        background: var(--primary);
        border-color: var(--primary);
    }

    .pagination-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

    .pagination-btn.active {
        background: var(--primary);
        border-color: var(--primary);
    }

.text-muted {
    color: var(--text-muted) !important;
}
.black {
    color: #111;
}

.blue {
    color: #58A9D8;
}
/* Buttons */
.btn-premium {
    /*background: linear-gradient(135deg, var(--primary), var(--primary-hover));*/
    background: #094e95;
    color: white;
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .btn-premium:hover {
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
        transform: scale(1.02);
    }
/* Form Inputs */
.form-input {
    background: #fff;
    border: 1px solid #a4a1a1;
    border-radius: 0.5rem;
    color: #000000;
    padding: 0.75rem 1rem;
    width: 100%;
    transition: var(--transition);
}

    .form-input:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
    }

/* MODULES */

.modules{

    width:1200px;

    margin:50px auto;

    display:flex;

    justify-content:space-between;
}

.module-card{

    width:360px;
    height:330px;

    border-radius:28px;

    padding:28px;

    text-align:center;

    display:flex;
    flex-direction:column;
    align-items:center;

    background:rgba(255,255,255,.20);

    border:1px solid rgba(255,255,255,.45);

    box-shadow:
    0 8px 25px rgba(0,0,0,.12);
}

.module-card img{

    width:120px;

    margin-bottom:12px;
}

.module-card h3{

    font-size:28px;

    margin-bottom:12px;

    font-weight:700;
}

.module-card p{

    font-size:15px;

    line-height:1.6;

    color:#222;
}

.module-card button{

    margin-top:auto;

    padding:12px 32px;

    border-radius:12px;

    background:rgba(255,255,255,.45);

    border:1px solid rgba(255,255,255,.8);

    cursor:pointer;

    font-size:15px;
}

/* OVERVIEW */

.overview-card{

    width:1200px;

    margin:20px auto 70px;

    min-height:220px;

    padding:35px;

    border-radius:28px;

    background:rgba(255,255,255,.18);

    border:1px solid rgba(255,255,255,.45);

    box-shadow:
    0 8px 25px rgba(0,0,0,.12);
}

.overview-card h2{

    font-size:22px;

    color:#111827;

    margin-bottom:50px;
}

.overview-grid{

    display:flex;

    gap:260px;
}

.overview-grid span{

    display:block;

    margin-bottom:12px;

    font-size:18px;

    color:#111827;
}

.overview-grid strong{

    font-size:64px;

    font-weight:800;

    color:#083d79;
}

/* RESPONSIVE */

@media(max-width:1280px){

    .hero,
    .modules,
    .overview-card{
        width:95%;
    }
}

@media(max-width:1100px){

    .modules{
        flex-direction:column;
        align-items:center;
        gap:25px;
    }

    .module-card{
        width:100%;
        max-width:500px;
    }

    .hero h1{
        font-size:44px;
    }

    .overview-grid{
        gap:80px;
        flex-wrap:wrap;
    }
}