/* In style.css or <style> block */
h2 {
  font-weight: 600;
  font-size: 28px;
  color: #1c3e57; /* or your preferred navy shade */
}
/* In style.css or <style> block */
h1 {
  font-weight: 600;
  font-size: 28px;
  color: #1c3e57; /* or your preferred navy shade */
}
/* General Page Styling */
body {
    background-color: #f0f8ff; /* light blue background */
    color: #222; /* black text */
    font-family: 'Segoe UI', sans-serif;
}

/* Navbar or Headers */
.navbar, .header, .table-primary, .btn-primary {
    background-color: #002d62 !important; /* navy */
    color: white;
}

/* Buttons */
.btn-success {
    background-color: #2e8b57 !important; /* green */
    color: white;
}

.btn-warning {
    background-color: #e0b000 !important;
    color: black;
}

.btn-info {
    background-color: #1e90ff !important; /* light blue */
    color: white;
}

.btn-secondary {
    background-color: #6c757d !important; /* grey */
    color: white;
}

/* Forms */
form {
    background-color: #f8f9fa; /* light grey */
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 1rem;
}

/* Tables */
.table th {
    background-color: #ddefff; /* light blue header */
    color: #222;
    font-weight: 600;
}

.table td {
    background-color: #ffffff;
    color: #222;
}

/* Custom Badges or Status Fields */
.badge {
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 5px;
}

/* Optional - Rounded Inputs */
.form-control, .form-select {
    border-radius: 6px;
}






/* 🔹 General Page Styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

/* (keep the rest as-is) */

/* Dropdown Styling */
.action-dropdown {
    position: absolute;
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
    border-radius: 0.5rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
    z-index: 999;
    min-width: 120px;
    display: none;
}

.action-dropdown a {
    display: block;
    margin-bottom: 0.3rem;
    text-decoration: none;
    text-align: center;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-weight: 500;
}

.action-dropdown a.update {
    background-color: #198754;
    color: white;
}

.action-dropdown a.view {
    background-color: #0dcaf0;
    color: white;
}

.action-dropdown a:hover {
    opacity: 0.85;
}

.patient-clickable {
    cursor: pointer;
    color: #0d6efd;
    font-weight: bold;
}

.patient-clickable:hover {
    text-decoration: underline;
}

.select-badge {
    font-weight: bold;
    color: #333;
    background-color: #f8f9fa;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 2px 8px;
    font-size: 0.85rem;
    width: auto;
}
td, td * {
  font-weight: 600;
  font-size: 14px;
  color: #222;
  font-family: 'Segoe UI', sans-serif;
}
body {
  font-family: 'Segoe UI', sans-serif;
  color: #222;
}
td span.badge {
  font-size: 13px;
  background-color: #555;
  color: #fff;
}
body {
  font-family: 'Segoe UI', sans-serif;
}

.form-control,
.form-select {
  font-size: 14px;
  padding: 0.25rem 0.5rem;
}
.poppins-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
}
@media (max-width: 768px) {
    .form-control,
    .btn {
        font-size: 14px;
        padding: 8px;
    }

    .table td, .table th {
        font-size: 13px;
        white-space: nowrap;
    }

    .hide-on-mobile {
        display: none !important;
    }

    .mobile-center {
        text-align: center !important;
    }

    .navbar-brand {
        font-size: 14px;
    }

    .navbar-toggler {
        border: none;
    }
}


