/* site.css - Custom styling overrides and additions */

/* LOGO IMAGE SCALING */
.navbar-brand img {
    height: 32px;
    width: auto;
    max-height: 100%;
}

@media (max-width: 576px) {
    .navbar-brand img {
        height: 28px;
    }
}

/* SCALE ON HOVER */
.hover-scale {
    transition: transform 0.2s ease-in-out;
}

    .hover-scale:hover {
        transform: scale(1.05);
    }

/* UNDERLINED LINK ON HOVER */
.underline-link {
    text-decoration: none;
    color: inherit;
}

    .underline-link:hover {
        text-decoration: underline;
    }

/* GENERAL LAYOUT TWEAKS */
body {
    background-color: #f8f9fa;
}


/* BOOTSTRAP OVERRIDES */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

    .btn-primary:hover {
        background-color: #0056b3;
        border-color: #004eab;
    }

/* FORM FIELD SPACING */
.form-group, .form-floating {
    margin-bottom: 1rem;
}

/* ALERT BOX SPACING */
.alert {
    margin-top: 1rem;
}

.table thead th {
    border-color: #0d6efd; /* Match primary blue */
    border-top: 1px solid #0d6efd; /* Ensure top border blends with header */
    vertical-align: middle;
    background-color: #0d6efd !important;
    color: #fff !important;
}
.content-wrapper {
    /* fill the viewport height */
    height: 100vh;
    /* leave space for fixed-top navbar */
    padding-top: 65px;
    /* leave space for the footer */
    padding-bottom: 30px;
    /* make the middle region scrollable */
    padding-left: 5px;
    padding-right:10px;
    overflow-y: auto;
    overflow-x: hidden;
}
