/* NITHABITI-UNIFIED DOCUMENT VERIFICATION INFRASTRUCTURE */
:root {
    --oxford-blue: #1a3a5f;
    --kenyan-gold: #c5a059;
    --white: #ffffff;
    --bg-gray: #f0f2f5;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Forces the body to fill the screen for perfect centering */
html, body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Georgia', serif;
    background-color: var(--bg-gray);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px; /* Minimal padding for mobile */
}

.container {
    width: 100%;
    max-width: 550px; /* Reduced width for a more elegant, centered feel */
    background: var(--white);
    padding: 25px 40px; /* Reduced vertical padding */
    border-top: 6px solid var(--oxford-blue);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 2px;
}

h2 {
    color: var(--oxford-blue);
    text-align: center;
    margin-bottom: 20px; /* Tighter heading space */
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- TIGHTER FORM LOGIC --- */
.form-group {
    margin-bottom: 12px; /* Significantly reduced from 25px */
}

label {
    display: block;
    margin-bottom: 4px; /* Tighter label-to-input gap */
    font-weight: bold;
    font-size: 0.85rem;
    color: var(--oxford-blue);
}

input, select {
    width: 100%;
    padding: 10px; /* Reduced padding for smaller box height */
    border: 1px solid #ccc;
    font-size: 0.95rem;
    font-family: inherit;
}

button {
    background-color: var(--oxford-blue);
    color: white;
    width: 100%;
    padding: 14px; /* Compact button */
    border: none;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 10px;
}

/* --- ADMIN TABLE ADJUSTMENTS --- */
.table-responsive {
    width: 100%;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 10px; /* Compact table rows */
    font-size: 0.9rem;
    border-bottom: 1px solid #eee;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media screen and (max-width: 480px) {
    body {
        align-items: flex-start; /* Allows scrolling on small phones */
        padding-top: 20px;
    }
    .container {
        padding: 20px;
    }
}