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: 140px;
  background-color: #f8f9fa;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* Global Styles extracted from views */
.table-hover tbody tr:hover {
    background-color: rgba(13, 110, 253, 0.04);
    transition: background-color 0.2s ease;
}

.badge {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.card {
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.form-control:focus, .form-select:focus {
    background-color: #fff !important;
    border-color: #0d6efd !important;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15) !important;
}

.input-group-text {
    border-right: none;
}

/* Navbar Styles */
.navbar {
    padding: 0.8rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    color: #0d6efd !important;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1.2rem !important;
    border-radius: 50px;
    transition: all 0.2s ease;
    margin: 0 0.2rem;
}

.nav-link:hover {
    background-color: rgba(13, 110, 253, 0.05);
    color: #0d6efd !important;
}

.nav-link.active {
    background-color: #0d6efd;
    color: white !important;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Footer Styles */
.footer {
    padding: 2rem 0;
    background: white;
}

/* Action Button Group Styles */
.action-btn-group {
    background: white;
    border: 1px solid #e1e5eb;
    border-radius: 50px;
    padding: 2px;
    display: inline-flex;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.action-btn-group .btn {
    border: none;
    border-radius: 50px !important;
    margin: 0 2px;
    padding: 0.4rem 0.8rem;
    transition: all 0.2s ease;
}

.action-btn-group .btn-outline-primary:hover {
    background-color: #0d6efd;
    color: white;
}

.action-btn-group .btn-outline-danger:hover {
    background-color: #dc3545;
    color: white;
}
.breadcrumb-item + .breadcrumb-item::before {
    content: "\F131";
    font-family: "bootstrap-icons";
    font-size: 0.7rem;
    vertical-align: middle;
    padding-top: 2px;
}

/* Login Page Styles */
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.login-page {
    background: #f4f7f6;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.login-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    overflow: hidden;
    width: 100%;
    max-width: 450px;
}

.login-header {
    background: var(--primary-gradient);
    padding: 40px;
    text-align: center;
    color: white;
}

.login-body {
    padding: 40px;
    background: white;
}

.btn-login {
    background: var(--primary-gradient);
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: transform 0.2s;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(118, 75, 162, 0.4);
}

.brand-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}