:root{
    --primary: #ffc300; /* Orange */
    --secondary: #0a1173; /* Black */
    --white: #ffffff;
    --red:#393186;
    --blue:#8D2138;
}

body {
    margin:0;
    font-family: 'Inter', Arial, sans-serif; /* Added Inter/Arial fallback */
    color: var(--secondary);
    font-size: 12px;
}

/* --- Navigation & Dropdowns --- */

.nav-item,
.dropdown-item,
.nav-link {
    font-size: 12px;
    color: var(--primary);
}

.nav-item:hover,
.dropdown-item:hover,
.nav-link:hover {
    color: var(--primary);
    /* Add a subtle visual feedback on hover */
    background-color: rgba(255, 132, 0, 0.1);
    transition: background-color 0.2s;
}

/* --- Structural Components --- */

.header-card {
    background-color: var(--primary);
    border-radius: 1rem; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    padding: 1.0rem;
    border: 1px solid var(--secondary);
    font-size:12px;
}

h4{
    color:var(--secondary);
}

.btn-primary{
    /* Buttons styled to use theme colors and be clearly defined */
    background:var(--primary) !important;
    color: var(--secondary) !important;
    border:2px solid var(--secondary) !important;
    border-radius: 10px;
    font-size:14px;
    margin:10px auto;
}

.formbox{
    /* Corrected: Removed stray quote mark from the end of the color property */
    border:2px solid var(--primary);
    border-radius: 15px;
    margin-top:5%;
    font-size:12px;
    color:var(--secondary);
}

/* --- Table Styles --- */
.table th, .table td {
    vertical-align: middle;
}

/* --- Pagination --- */

.pagination-row {
    /* Changed fixed height to padding for responsiveness */
    padding: 5px 0;
    background-color: var(--primary); /* Using variable */
    border-top: 1px solid var(--secondary); /* Using variable */
    border-bottom: 1px solid var(--secondary); /* Using variable */
}

.pagination-cell {
    text-align: center;
    padding: 0;
}

.pagination-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
}

.pagination-button {
    background: none;
    border: none;
    color: var(--secondary); /* Using variable */
    font-weight: bold;
    cursor: pointer;
    padding: 0 10px;
    text-decoration: none;
}

.pagination-info {
    font-size: 12px;
    font-weight: bold;
}

 input[type="text"] {
            text-transform: uppercase;
        }
        .action-buttons {
            display: flex;
            gap: 5px;
        }
        .table-responsive {
            max-height: 50rem;
        }