/* ==== GLOBAL ==== */
body {
    font-family: 'Segoe UI', sans-serif;
    background: #f7f9fc;
    margin: 0;
    padding: 25px;
}

.container-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 14px;
    border: 1px solid #e3e7ef;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
    margin-bottom: 25px;
}

h1, h2, h3 {
    color: #003c7a;
    margin-bottom: 12px;
}

nav a {
    background: #0058bc;
    color: white;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    margin-right: 10px;
    font-weight: 600;
}

nav a:hover {
    background: #004a9a;
}

button {
    background: #0058bc;
    color: white;
    padding: 10px 18px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background: #004fa6;
}

input, select, textarea {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #c9d7ed;
    margin-bottom: 12px;
}

table {
    width: 100%;
    background: white;
    border-collapse: collapse;
}

table th {
    background: #0058bc;
    color: white;
    padding: 12px;
    border: none;
}

table td {
    padding: 10px;
    border: 1px solid #e3e6ef;
}

.table-box {
    margin-top: 20px;
}

.table-box table tr:nth-child(even) {
    background: #f0f6ff;
}

.badge-blue {
    background: #d8e8ff;
    padding: 8px 14px;
    border-radius: 8px;
    color: #0058bc;
    font-weight: bold;
}

.center {
    text-align: center;
}
