@charset "UTF-8";

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    margin:0;
    background:#f5f7fb;
    font-family:-apple-system,BlinkMacSystemFont,sans-serif;
}

.container{
    width:1200px;
    max-width:95%;
    margin:40px auto;
}

/* ======================
   Header
====================== */

.header{
    position:fixed;
    top:0;
    left:260px;
    right:0;
    height:70px;
    background:#fff;
    border-bottom:1px solid #e5e7eb;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 30px;
    z-index:100;
}

.logo{
    font-size:24px;
    font-weight:700;
    color:#111827;
}

.dashboard-link{
    text-decoration:none;
    color:#2563eb;
    font-weight:600;
}

/* ======================
   Sidebar
====================== */

.sidebar{
    position:fixed;
    top:0;
    left:0;
    width:260px;
    height:100vh;
    background:#111827;
    overflow-y:auto;
}

.sidebar-header{
    padding:25px;
    color:#fff;
    font-size:22px;
    font-weight:bold;
    border-bottom:1px solid rgba(255,255,255,.1);
}

.menu-title{
    padding:20px 20px 10px;
    color:#9ca3af;
    font-size:12px;
    text-transform:uppercase;
}

.menu{
    list-style:none;
}

.menu a{
    display:block;
    padding:12px 25px;
    color:#d1d5db;
    text-decoration:none;
    transition:.2s;
}

.menu a:hover{
    background:#1f2937;
    color:#fff;
}

.submenu a{
    padding-left:45px;
    font-size:14px;
}

/* ======================
   Main
====================== */

.main{
    margin-left:260px;
    margin-top:70px;
    padding:30px;
}

.content-box{
    background:#fff;
    border-radius:15px;
    padding:30px;
    box-shadow:0 4px 12px rgba(0,0,0,.05);
}

.content{
    display:none;
}

.content.active{
    display:block;
}

.content h2{
    margin-bottom:20px;
    color:#111827;
}

.content p{
    line-height:1.8;
    color:#4b5563;
}

.info-card{
    margin-top:20px;
    background:#f8fafc;
    border:1px solid #e5e7eb;
    padding:20px;
    border-radius:10px;
}




h1{
    margin:0;
    font-size:32px;
}

.card{
    background:#fff;
    border-radius:12px;
    padding:20px;
    margin-bottom:20px;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

input[type=text]{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    border-radius:8px;
    margin-bottom:15px;
}

button{
    background:#0d6efd;
    color:#fff;
    border:none;
    padding:12px 24px;
    border-radius:8px;
    cursor:pointer;
}

button:hover{
    opacity:.9;
}

.grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.score-card{
    background:#fff;
    border-radius:12px;
    text-align:center;
    padding:25px;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.score-title{
    font-size:14px;
    color:#666;
}

.score-value{
    font-size:42px;
    font-weight:bold;
    margin-top:10px;
}

table{
    width:100%;
    border-collapse:collapse;
}

table th,
table td{
    border:1px solid #ddd;
    padding:10px;
}

table th{
    background:#f1f3f6;
}

.badge{
    display:inline-block;
    padding:4px 10px;
    border-radius:20px;
    background:#e8f0ff;
    margin:4px;
}

.error{
    color:red;
    margin-bottom:20px;
}

ul{
    margin:0;
    list-style-type: none !important;
}