html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(25,135,84,.25);
}

html {
    position: relative;
    min-height: 100%;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #f4f7fb;
    font-family: 'Inter', sans-serif;
    color: #1f2937;
    margin-bottom: 60px;
}

/* NAVBAR */
.navbar {
    padding: 14px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    background-color: var(--brand-orange);
}

.navbar-brand {
    font-weight: 700;
    font-size: 22px;
}

.nav-link {
    font-weight: 500;
    margin-left: 10px;
}

.navbar .nav-link {
    color: white !important;
    border-radius: 6px;
    transition: all .2s ease;
}

    .navbar .nav-link:hover {
        color: white !important;
        background-color: rgba(255,255,255,0.15);
    }
}
/* CARDS */
.card {
    border: none;
    border-radius: 18px;
    transition: all 0.2s ease;
    background: white;
}

    .card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }

.card-header-orange {
    background: var(--brand-orange);
    color: white;
    font-weight: 600;
}

/* BUTTONS */
.btn-primary {
    background-color: #ff7a00;
    border-color: #ff7a00;
    border: none;
    border-radius: 10px;
    padding: 10px 18px;
    font-weight: 600;
}

    .btn-primary:hover {
        background-color: var(--brand-orange);
        border-color: #e66d00;
    }

.btn-outline-primary {
    border-radius: 10px;
    font-weight: 600;
}

/* TABLES */
.table {
    border-radius: 14px;
    overflow: hidden;
}

    .table thead {
        background-color: #f1f5f9;
    }

    .table th {
        font-weight: 600;
        color: #475569;
    }

    .table td {
        vertical-align: middle;
    }

    .table thead {
        background-color: #eef7f0;
    }

/* BADGES */
.badge {
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
}

/* INPUTS */
.form-control {
    border-radius: 10px;
    padding: 12px;
}

.input-group .btn {
    border-radius: 10px;
}

/* HEADINGS */
h4, h5, h6 {
    font-weight: 700;
}

/* FOOTER */
.footer {
    background: transparent;
    padding: 20px 0;
}

.table-responsive {
    overflow-x: auto;
}

.form-control,
.btn {
    min-height: 45px;
}

@media (max-width: 768px) {

    h1, h2, h3, h4 {
        font-size: 1.3rem;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .card {
        padding: 1rem !important;
    }

    .table {
        font-size: 14px;
    }

    .input-group {
        flex-direction: column;
    }

        .input-group input {
            width: 100%;
        }

    .w-mobile-full {
        width: 100%;
        margin-top: 10px;
    }

    .navbar .btn {
        width: auto;
    }
}

:root {
    --brand-green: #1f7a3d;
    --brand-orange: #ff8c00;
}

.minuteman-navbar {
    background-color: var(--brand-orange);
}

.navbar-brand {
    font-weight: 700;
}

.bg-success {
    background: #198754;
    color: white;
}


.btn:hover {
    opacity: 0.9;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: #198754 !important;
    color: white !important;
}

.dataTables_wrapper .dataTables_filter input {
    border: 1px solid #198754;
}

.dataTables_wrapper .dataTables_length select {
    border: 1px solid #198754;
}

.dataTables_wrapper .paginate_button:hover {
    background: var(--brand-orange) !important;
    color: white !important;
}

.dropdown-item:active,
.dropdown-item.active {
    background-color: #ff8c00 !important;
    color: white !important;
}

.dropdown-item {
    color: #212529;
}

    .dropdown-item:hover {
        background-color: #ff8c00;
        color: white;
    }