:root {
    --primary: #0F172A;     /* Deep navy/slate used in "Class" text */
    --secondary: #2563EB;   /* Bright blue used in book icon and gradient */
    --success: #16A34A;     /* Green accent from the checkmark shape */
    --warning: #F59E0B;     /* Orange circle and sparkle above the book */
    --muted: #6B7280;       /* Gray subtitle "School Management Software" */
    --background: #FFFFFF;  /* White background */
    --light: #FFFFFF;
}




html {
    height: 100%;
}

body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    font-family: 'Inter', sans-serif;
}

main {
    flex: 1 0 auto;
}

h1 {
    font-weight: 700;
    letter-spacing: -0.3px;
}

h2 {
    font-weight: 700;
    letter-spacing: 0.3px;
}

h3 {
    font-weight: 600;
    letter-spacing: 0.2px;
}

h4 {
    font-weight: 600;
    letter-spacing: 0.2px;
}

.navbar {
    background-color: var(--light) !important;
}

.navbar-toggler {
    background-color: var(--primary) !important;
}

.link {
    color: var(--secondary);
    text-decoration: underline;
}

.link:hover {
    text-decoration: none;
    color: var(--secondary);
}

.link-reverse {
    color: var(--secondary);
    text-decoration: none;
}

.link-reverse:hover {
    text-decoration: underline;
    color: var(--secondary);
}

#logo {
    width: 10em;
}

.jumbotron {
    background-color: var(--primary);
    padding:20px 0px; 
    border-top: 5px groove var(--muted);
     text-align: center;
     color: var(--light);
}


.first-section p {
    font-size: larger;
}

.text-blue {
    color: var(--secondary);
}

.second-section {
    background-color: var(--light);
    padding: 20px 0px;
}

.second-section h4 {
    color: var(--primary);
}

.footer-copyright {
    border-top: 2px solid var(--dark);
    background-color: var(--primary);
    opacity: 0.9;
    color: var(--light);
}

.table-head-color {
    background-color: var(--secondary);
}

/* table {
    border-radius: 20px !important;
} */

.sectional-table-row-color {
    background-color: var(--primary);
    color: var(--light);
}

.regional-table-row-color {
    color: var(--primary);
    background-color: var(--light);
}

.state-table-row-color {
    background-color: var(--primary);
    color: var(--light);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--light) !important;
    border: none !important;
}

.btn-primary:hover {
    background-color: var(--primary);
    color: var(--light) !important;
    border: none !important;
}

.accordion-button {
    color: var(--primary);
}

.nav-link {
    color: var(--secondary);
}

.nav-link:hover {
    color: var(--secondary);
}



table {
    border-collapse: collapse;
}

th,
td {
    border: 1px solid #e5e7eb;
    text-align: left;
    padding: 12px;
}

hr {
    width: 20%;
    border-bottom: 20px solid var(--warning);
    border-radius: 15px;
}

.table-roster th, .table-roster td {
    text-align: center;
}

.link-dashboard {
    color: var(--primary);
    text-decoration: none;
}

.link-dashboard:hover {
    text-decoration: none;
    color: var(--primary);
}


 .coming-soon {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
    text-align: center;
    padding: 20px;
}


.tag {
    display: inline-block;
    padding: 6px 12px;
    background: #2563eb;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 20px;
}   

       
.role {

    display: inline-block;
    padding: 3px 6px;
    background: var(--success);
    border-radius: 5px;
    font-size: 12px;
    color: var(--light);
    margin: 3px;

}

.link-icon {
    color: var(--warning);
}