﻿:root {
    --darkblue: #0a1a4f;
}

/* Login Page */
.login-body {
    height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #d8e0ff 100%);
    color: #fff;
}

.login-card {
    width: 400px;
    background: #fff;
    color: #000;
}

.btn-darkblue {
    background-color: var(--darkblue);
    color: white;
    border: none;
}

    .btn-darkblue:hover {
        background-color: #132568;
    }

/* Landing Page */
.bg-darkblue {
    background-color: var(--darkblue) !important;
}

.text-darkblue {
    color: var(--darkblue) !important;
}

.btn-outline-darkblue {
    border-color: var(--darkblue);
    color: var(--darkblue);
}

    .btn-outline-darkblue:hover {
        background-color: var(--darkblue);
        color: white;
    }

.table-darkblue {
    background-color: var(--darkblue);
}

.table-hover tbody tr:hover {
    background-color: rgba(13, 27, 76, 0.08);
}

/* Card and Modal */
.card {
    border-radius: 16px;
}

.modal-content {
    border-radius: 16px;
}

.table-wrapper {
    height: calc(100vh - 280px);
    overflow-y: auto;
    font-size: 0.9rem;
}

table thead th {
    position: sticky;
    top: 0px;
    z-index: 2;
}

small {
    font-size: .825em !important;
}

.fs-7 {
    font-size: 0.9rem;
}
/* Responsive */
@media (max-width: 576px) {
    .login-card {
        width: 90%;
    }

    .navbar .btn {
        font-size: 0.9rem;
        padding: 6px 10px;
    }

    .navbar-brand span {
        font-size: 1rem;
    }
}
