/*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.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}*/

/* ========================================
   GLOBAL STYLES
   ======================================== */
html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin-bottom: 60px;
}

.btn-primary {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar-brand {
    font-weight: 600;
    font-size: 1.25rem;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85);
}

    .navbar-dark .navbar-nav .nav-link:hover {
        color: #fff;
    }

/* ========================================
   FOOTER
   ======================================== */
.footer {
    position: relative;
    /*bottom: 0;*/
    width: 100%;
    white-space: nowrap;
    line-height: normal;
    margin-top: auto;
}

/* ========================================
   CARDS
   ======================================== */
.card {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    font-weight: 600;
}

/* ========================================
   FORMS
   ======================================== */
.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-label.required::after {
    content: " *";
    color: #dc3545;
    font-weight: bold;
}

.form-control:focus,
.form-select:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.input-group-text {
    background-color: #e9ecef;
}

/* ========================================
   DATATABLES CUSTOM
   ======================================== */
.dataTables_wrapper .dataTables_length select {
    padding: 0.375rem 2.25rem 0.375rem 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.dataTables_wrapper .dataTables_filter input {
    padding: 0.375rem 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    margin-left: 0.5rem;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    font-weight: 500;
}

.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

/* ========================================
   ALERTS
   ======================================== */
.alert {
    border-radius: 0.375rem;
}

    .alert i {
        margin-right: 0.5rem;
    }

/* ========================================
   LOGIN PAGE
   ======================================== */
.login-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    width: 100%;
    max-width: 450px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* ========================================
   DASHBOARD CARDS
   ======================================== */
.dashboard-card {
    border-left: 4px solid;
    transition: transform 0.2s;
}

    .dashboard-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    }

    .dashboard-card.card-primary {
        border-left-color: #0d6efd;
    }

    .dashboard-card.card-success {
        border-left-color: #198754;
    }

    .dashboard-card.card-warning {
        border-left-color: #ffc107;
    }

    .dashboard-card.card-danger {
        border-left-color: #dc3545;
    }

/* ========================================
   UTILITY CLASSES
   ======================================== */
.cursor-pointer {
    cursor: pointer;
}

.text-muted-light {
    color: #6c757d !important;
}

.bg-light-gray {
    background-color: #f8f9fa;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1rem;
    }

    .footer {
        line-height: 40px;
    }
}