body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #080A33;
    color: #E4EEFA;
}

.container {
    width: 95%;
    max-width: 1200px;
    margin: 30px auto;
}

.card {
    background: #101A5A;
    border-radius: 18px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

h1, h2, h3 {
    color: #E4EEFA;
    margin-top: 0;
}

a {
    color: #A0C2EB;
    text-decoration: none;
}

input, select, textarea, button {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #568BD6;
    box-sizing: border-box;
}

button {
    background: #224EA6;
    color: white;
    cursor: pointer;
    border: none;
}

button:hover {
    background: #568BD6;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #0f1447;
    border-radius: 10px;
    overflow: hidden;
}

table th, table td {
    padding: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    text-align: left;
}

.badge {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 30px;
    background: #224EA6;
    font-size: 13px;
}

.top-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.top-links a {
    background: #224EA6;
    padding: 10px 14px;
    border-radius: 12px;
    color: #fff;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-box {
    background: #0f1447;
    border-radius: 16px;
    padding: 18px;
}

.stat-box h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #A0C2EB;
}

.stat-box .value {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
}

.small-note {
    color: #A0C2EB;
    font-size: 14px;
}

@media(max-width: 992px) {
    .grid-4 {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 768px) {
    .grid-2,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}