/**
 * ============================================================================
 * E-PUSKESMAS GLOBAL STYLESHEET
 * ============================================================================
 * 
 * Stylesheet untuk aplikasi e-Puskesmas dengan tema hijau modern
 * Menggunakan CSS Custom Properties (CSS Variables) untuk maintainability
 * 
 * Struktur file:
 * 1. CSS Variables (Tema & Warna)
 * 2. Base Styles (Body, Typography)
 * 3. Global Components (Navbar, Footer, Forms, Tables)
 * 4. Page Components (Hero, Cards, Sections)
 * 5. Utility Classes
 * 6. All Media Queries (Grouped by breakpoint)
 * ============================================================================
 */

/* ============================================================================
   1. CSS VARIABLES - TEMA & WARNA
   ============================================================================ */

:root {
    --primary-color: #10b981;
    --secondary-color: #059669;
    --accent-color: #d1fae5;
    --text-color: #1f2937;
    --border-color: #e5e7eb;
    --bg-light: #f0fdf4;
    --dark-green: #064e3b;
    --sage-green: #6ee7b7;
}

/* ============================================================================
   2. BASE STYLES - BODY & TYPOGRAPHY GLOBAL
   ============================================================================ */

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    color: var(--text-color);
    line-height: 1.6;
}

/* ============================================================================
   3. GLOBAL COMPONENTS
   ============================================================================ */

/* --- Top Bar --- */
.top-bar {
    background: var(--primary-color);
    color: white;
    padding: 10px 0;
    font-size: 0.9rem;
}

/* --- Navbar & Navigation --- */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.1);
    padding: 15px 0;
    border-bottom: 1px solid rgba(209, 250, 229, 0.3);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
    font-size: 1.3rem;
    letter-spacing: -0.5px;
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    padding: 8px 16px !important;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
    transform: translateY(-2px);
}

.nav-link.active {
    color: var(--secondary-color) !important;
}

/* Megamenu Styles */
.navbar-nav .nav-item.megamenu {
    position: static;
}

.megamenu-dropdown {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    background: white;
    border: none;
    border-top: 3px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px 0;
    margin-top: 0;
    border-radius: 0;
    display: none;
}

.navbar-nav .nav-item.megamenu:hover .megamenu-dropdown {
    display: block;
}

.megamenu-column {
    padding: 0 20px;
}

.megamenu-column h6 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.megamenu-item {
    padding: 10px 15px;
    border-radius: 8px;
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    margin-bottom: 5px;
}

.megamenu-item:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    transform: translateX(5px);
}

.megamenu-item i {
    margin-right: 10px;
    font-size: 1.2rem;
    color: var(--primary-color);
    width: 25px;
}

.megamenu-item span {
    flex: 1;
}

.megamenu-item small {
    display: block;
    color: #6b7280;
    font-size: 0.85rem;
    margin-top: 2px;
}

.megamenu-featured {
    background: linear-gradient(135deg, var(--bg-light) 0%, #d1fae5 100%);
    padding: 20px;
    border-radius: 12px;
    border: 2px solid var(--primary-color);
}

.megamenu-featured h6 {
    border: none;
    margin-bottom: 10px;
}

.megamenu-featured .btn {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.megamenu-featured .btn:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

/* Dropdown Menu */
.dropdown-menu {
    box-shadow: 0 12px 36px rgba(16, 185, 129, 0.18);
    border-radius: 20px;
    padding: 16px;
    margin-top: 12px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: none;
}

.dropdown-item {
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #333;
    font-weight: 500;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    transform: translateX(5px);
}

.dropdown-item i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.dropdown-item:hover i {
    color: white;
}

/* --- Buttons & Actions --- */
.btn-hero {
    padding: 14px 40px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
    letter-spacing: 0.5px;
}

.btn-hero:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.35);
}

.btn-primary {
    background: var(--primary-color);
    border: none;
}

.btn-primary:hover {
    background: var(--secondary-color);
}

.btn-detail,
.btn-download {
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

.btn-detail {
    background: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    color: white;
}

.btn-detail:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-download {
    background: white;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-download:hover {
    background: var(--secondary-color);
    color: white;
}

/* --- Forms & Inputs --- */
.form-control,
.form-select {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 10px 15px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-label {
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.input-icon {
    position: relative;
    display: block;
}

.input-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
    font-size: 16px;
    z-index: 10;
    pointer-events: none;
}

.input-icon .form-control,
.input-icon .form-select {
    padding-left: 48px !important;
    background-color: white;
}

/* --- Tables --- */
.table-pegawai {
    background: white;
    margin: 0;
    border: 1px solid var(--border-color);
}

.table-pegawai thead {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.table-pegawai thead th {
    padding: 15px 12px;
    font-weight: 600;
    border: none;
    font-size: 0.9rem;
    vertical-align: middle;
}

.table-pegawai tbody tr {
    border-bottom: 1px solid var(--border-color);
}

.table-pegawai tbody tr:last-child {
    border-bottom: none;
}

.table-pegawai tbody tr:hover {
    background-color: #f8f9fa;
}

.table-pegawai tbody td {
    padding: 15px 12px;
    vertical-align: middle;
    font-size: 0.9rem;
    color: #333;
}

.table-pegawai tbody td:first-child {
    color: #999;
    font-weight: 500;
}

.table-pegawai tbody td strong {
    color: var(--primary-color);
    font-weight: 600;
}

.table-pegawai .btn-primary {
    background: var(--secondary-color);
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
}

.table-pegawai .btn-primary:hover {
    background: var(--primary-color);
}

.table-responsive {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
}

/* --- Pagination --- */
.pagination {
    gap: 10px;
}

.page-link {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 10px 18px;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-link:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

.page-item.active .page-link {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.pagination-section {
    margin: 50px 0;
}

/* --- Breadcrumb --- */
.breadcrumb-section,
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 40px 0;
    margin-bottom: 40px;
}

.breadcrumb-section h1,
.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
    padding: 0;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item a {
    color: white;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/* --- Footer --- */
.footer {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 50px 0 20px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sage-green) 0%, var(--primary-color) 100%);
}

.footer h5 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

/* --- Social Icons --- */
.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(209, 250, 229, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
    text-decoration: none;
    border: 1px solid rgba(209, 250, 229, 0.3);
}

.social-icon:hover {
    background: var(--sage-green);
    transform: translateY(-5px) rotate(5deg);
    color: var(--dark-green);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

/* ============================================================================
   4. PAGE COMPONENTS & SECTIONS
   ============================================================================ */

/* --- Hero Section --- */
.hero-section {
    position: relative;
    padding: 30px 0;
    overflow: visible;
}

.hero-carousel {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.25);
}

.hero-carousel .carousel-item {
    height: auto;
    position: relative;
}

.hero-carousel .carousel-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-carousel .carousel-caption {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    text-align: left;
    padding: 0;
}

.carousel-control-prev,
.carousel-control-next {
    z-index: 3;
    opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-indicators {
    z-index: 3;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* --- Welcome Section --- */
.welcome-section {
    padding: 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(209, 250, 229, 0.5) 0%, rgba(167, 243, 208, 0.3) 100%);
    border-radius: 30px;
    margin: 20px 0;
}

.welcome-section h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark-green);
    letter-spacing: -1.5px;
}

.welcome-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    color: var(--primary-color);
}

/* --- Quick Links --- */
.quick-links {
    margin-top: 0;
    padding-top: 40px;
    position: relative;
    z-index: 10;
}

.quick-link-card {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    border-radius: 24px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(209, 250, 229, 0.5);
    height: 100%;
    backdrop-filter: blur(10px);
}

.quick-link-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 48px rgba(16, 185, 129, 0.25);
    border-color: var(--primary-color);
}

.quick-link-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.quick-link-card h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

/* --- Section Titles --- */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    letter-spacing: -1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

/* --- Service Cards --- */
.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 253, 244, 0.5) 100%);
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(209, 250, 229, 0.4);
    height: 100%;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, rgba(209, 250, 229, 0.3) 100%);
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 40px rgba(16, 185, 129, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.35);
}

.service-card h6 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 10px;
}

/* --- Stats Section --- */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 60px 0;
}

.stat-card {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* --- News Cards --- */
.news-card {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(16, 185, 129, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid rgba(209, 250, 229, 0.3);
}

.news-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 56px rgba(16, 185, 129, 0.25);
    border-color: var(--primary-color);
}

.news-card-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.news-card:hover .news-card-img img {
    transform: scale(1.1);
}

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--primary-color) 100%);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.news-views {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.news-card-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #999;
    font-size: 0.9rem;
}

.news-meta i {
    color: var(--secondary-color);
}

.news-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.4;
    flex-grow: 1;
}

.news-card-title a {
    color: var(--primary-color);
}

.news-card-title:hover,
.news-card-title a:hover {
    color: var(--secondary-color);
}

.news-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more-btn {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    color: var(--primary-color);
    gap: 10px;
}

.read-more-btn i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

/* --- Filter Pills & Sections --- */
.filter-section {
    margin-bottom: 40px;
}

.filter-pill {
    display: inline-block;
    padding: 10px 25px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    margin-right: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    font-weight: 500;
}

.filter-pill:hover,
.filter-pill.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    transform: translateY(-3px);
}

/* --- Stats Cards --- */
.stats-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 253, 244, 0.8) 100%);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
    margin-bottom: 30px;
    border: 2px solid rgba(209, 250, 229, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(16, 185, 129, 0.22);
    border-color: var(--primary-color);
}

.stats-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 8px rgba(16, 185, 129, 0.25));
}

.stats-card h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stats-card p {
    color: #666;
    margin: 0;
}

/* Stats Info Section */
.stats-info-section {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-item p {
    color: #666;
    margin: 0;
}

/* --- Announcement Items --- */
.announcement-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 8px 28px rgba(16, 185, 129, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 5px solid var(--primary-color);
    display: flex;
    gap: 25px;
    align-items: start;
    border: 1px solid rgba(209, 250, 229, 0.4);
}

.announcement-item:hover {
    transform: translateX(8px);
    box-shadow: 0 16px 40px rgba(16, 185, 129, 0.22);
    border-left-color: var(--secondary-color);
}

.announcement-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.25);
}

.announcement-content {
    flex-grow: 1;
}

.announcement-content h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.announcement-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: #999;
    font-size: 0.9rem;
}

.announcement-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.announcement-meta i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.announcement-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.4;
}

.announcement-title:hover {
    color: var(--secondary-color);
}

.announcement-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.announcement-badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--secondary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-right: 10px;
}

.announcement-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

/* --- Content Cards & Sidebar --- */
.content-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.content-card h2 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--accent-color);
}

.content-card p {
    color: #333;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.content-card ul {
    margin-left: 20px;
    margin-bottom: 25px;
}

.content-card ul li {
    color: #333;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 10px;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(30, 58, 138, 0.1) 100%);
    border-left: 4px solid var(--secondary-color);
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
}

.highlight-box p {
    margin-bottom: 0;
    font-weight: 500;
    color: var(--primary-color);
}

.sidebar-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    margin-bottom: 30px;
    position: sticky;
    top: 100px;
}

.sidebar-card h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
}

.sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.sidebar-widget h5 {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--accent-color);
}

/* Sidebar Lists */
.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-list li {
    margin-bottom: 10px;
}

.sidebar-list a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #555;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sidebar-list a:hover {
    background: rgba(59, 130, 246, 0.1);
    color: var(--secondary-color);
    padding-left: 20px;
}

.sidebar-list a.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.sidebar-list a.active i {
    color: white;
}

.sidebar-list a i {
    margin-right: 10px;
    color: var(--secondary-color);
    font-size: 16px;
}

.sidebar-card .info-box {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border: 2px solid var(--secondary-color);
    border-radius: 12px;
    padding: 20px;
}

.sidebar-card .info-box h6 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1rem;
    border: none;
    padding: 0;
}

.sidebar-card .info-box h6 i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.sidebar-card .info-box p {
    margin-bottom: 12px;
    color: #555;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-card .info-box p:last-child {
    margin-bottom: 0;
}

.sidebar-card .info-box p i {
    color: var(--secondary-color);
    font-size: 18px;
    min-width: 20px;
}

/* --- Category & Popular Lists --- */
.category-list,
.popular-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li,
.category-item,
.popular-item {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.category-list li {
    margin-bottom: 12px;
    padding: 0;
    border: none;
}

.category-item:last-child,
.popular-item:last-child {
    border-bottom: none;
}

.category-list a,
.category-link,
.popular-link {
    color: #666;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 8px;
}

.category-link:hover,
.popular-link:hover,
.category-list a:hover {
    color: var(--secondary-color);
    padding-left: 10px;
    background: rgba(59, 130, 246, 0.1);
}

.category-count,
.category-list .count {
    background: var(--secondary-color);
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.popular-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.popular-item:hover {
    background: rgba(59, 130, 246, 0.05);
}

.popular-number {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.popular-content h6 {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.popular-content small {
    color: #999;
    font-size: 0.8rem;
}

/* --- Search Bar --- */
.search-bar {
    background: white;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.search-bar input {
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    background: transparent;
}

.search-bar input:focus {
    outline: none;
    box-shadow: none;
    background: transparent;
}

.search-bar button {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.search-bar button:hover {
    background: var(--primary-color);
    transform: scale(1.05);
}

/* --- Header Section for Pages --- */
.header-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 60px 0 40px;
    margin-bottom: 50px;
}

.header-section h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.header-section p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* --- Contact Page Styles --- */
.contact-info-simple {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item i {
    font-size: 28px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.contact-detail {
    margin-left: 2rem;
}

.contact-detail h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-detail p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.contact-form-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-card .form-label {
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.1);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.social-links-simple {
    display: flex;
    gap: 15px;
    margin-top: 5px;
}

.social-links-simple a {
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-links-simple a:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}

.quick-service-card {
    display: block;
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 58, 138, 0.1);
}

.quick-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.15);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.quick-service-card i {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
}

.quick-service-card h6 {
    margin: 0;
    font-weight: 600;
}

/* --- Forms & Inputs (Content Card) --- */
.content-card .input-group {
    margin-bottom: 0;
}

.content-card .input-group-text {
    background: white;
    border: 2px solid #e5e7eb;
    border-right: none;
    color: var(--secondary-color);
    font-size: 16px;
}

.content-card .input-group .form-control {
    border: 2px solid #e5e7eb;
    border-left: none;
    padding: 10px 15px;
    font-size: 0.95rem;
}

.content-card .input-group .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: none;
}

.content-card .input-group:focus-within .input-group-text {
    border-color: var(--secondary-color);
}

.content-card .form-select {
    border: 2px solid #e5e7eb;
    padding: 10px 15px;
    font-size: 0.95rem;
    color: #555;
}

.content-card .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: none;
}

/* --- Data Pegawai Pagination --- */
.content-card .pagination {
    margin-bottom: 0;
}

.content-card .pagination .page-link {
    border: 1px solid #e5e7eb;
    color: #666;
    padding: 5px 10px;
    margin: 0 2px;
    border-radius: 4px;
    font-size: 0.85rem;
}

.content-card .pagination .page-link:hover {
    background: #f8f9fa;
    border-color: #d1d5db;
    color: #333;
}

.content-card .pagination .page-item.active .page-link {
    background: #e5e7eb;
    border-color: #d1d5db;
    color: #333;
}

.content-card .pagination .page-item.disabled .page-link {
    background: #f8f9fa;
    color: #ccc;
    border-color: #e5e7eb;
}

/* --- Kritik Saran Page --- */
.kritik-saran-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.form-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 35px;
}

.kritik-saran-card h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.kritik-saran-card .form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.kritik-saran-card .form-control,
.kritik-saran-card .form-select {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.kritik-saran-card .form-control:focus,
.kritik-saran-card .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.15);
}

.kritik-saran-card textarea.form-control {
    padding-left: 15px;
}

.kritik-saran-card .info-box {
    background: rgba(59, 130, 246, 0.1);
    border-left: 4px solid var(--secondary-color);
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    gap: 15px;
}

.kritik-saran-card .info-box i {
    font-size: 24px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.kritik-saran-card .info-box strong {
    color: var(--primary-color);
}

.kritik-saran-card .info-box p {
    font-size: 0.9rem;
    color: #666;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.info-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 30px;
}

.info-card h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.info-card p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* --- Jadwal Dokter Page --- */
.doctor-schedule-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.doctor-schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.doctor-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 25px;
    color: white;
}

.doctor-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid white;
    object-fit: cover;
    margin-bottom: 15px;
}

.doctor-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.doctor-specialty {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 10px;
}

.schedule-table {
    width: 100%;
    margin: 0;
}

.schedule-table th {
    background-color: #f8f9fa;
    padding: 15px;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #dee2e6;
}

.schedule-table td {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

.day-cell {
    font-weight: 600;
    color: var(--primary-color);
}

.time-cell {
    color: #666;
    font-size: 0.95rem;
}

.status-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-available {
    background-color: #d4edda;
    color: #155724;
}

.status-off {
    background-color: #f8d7da;
    color: #721c24;
}

.booking-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.booking-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.legend-box {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.legend-item {
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 10px;
}

.legend-item i {
    margin-right: 5px;
}

.info-alert {
    background-color: var(--accent-color);
    border-left: 4px solid var(--primary-color);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.info-alert h5 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.info-alert ul {
    margin-bottom: 0;
    padding-left: 20px;
}

.specialty-filter {
    display: inline-block;
    padding: 8px 20px;
    margin: 5px;
    background-color: white;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.specialty-filter:hover,
.specialty-filter.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-color: var(--primary-color);
}

/* --- Recent News / Sidebar Berita --- */
.sidebar-card .sidebar-divider {
    border: none;
    border-top: 3px solid var(--accent-color, #f5a623);
    margin: 8px 0 16px;
    opacity: 1;
}

.recent-news-list {
    display: flex;
    flex-direction: column;
}

.recent-news-item {
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
}

.recent-news-item:last-child {
    border-bottom: none;
}

.recent-news-thumb {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.recent-news-body {
    flex: 1;
    min-width: 0;
}

.recent-news-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    line-height: 1.4;
    margin-bottom: 6px;
    display: block;
}

.recent-news-title:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.recent-news-meta {
    display: flex;
    gap: 12px;
    font-size: 0.78rem;
    color: #888;
}

.recent-news-meta i {
    color: var(--secondary-color);
    margin-right: 3px;
}

.btn-all-news {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.25s ease;
}

.btn-all-news:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* ============================================================================
   5. UTILITY CLASSES
   ============================================================================ */

.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* ============================================================================
   6. RESPONSIVE DESIGN - MEDIA QUERIES
   ============================================================================ */

/* --- BREAKPOINT: 992px (Large Tablets) --- */
@media (max-width: 992px) {
    .navbar-brand {
        font-size: 1.1rem;
    }

    .dropdown-menu {
        border: 1px solid #e0e0e0;
        box-shadow: none;
    }

    .header-section h1 {
        font-size: 2rem;
    }

    .header-section p {
        font-size: 1rem;
    }

    .table-pegawai {
        font-size: 0.85rem;
    }

    .table-pegawai thead th,
    .table-pegawai tbody td {
        padding: 10px 8px;
        font-size: 0.85rem;
    }
}

/* --- BREAKPOINT: 768px (Tablets) --- */
@media (max-width: 768px) {
    /* Navigation */
    .navbar-brand {
        font-size: 1rem;
    }

    .nav-link {
        padding: 10px 15px !important;
    }

    .dropdown-menu {
        margin-top: 0;
        border-radius: 0;
    }

    /* Headers */
    .header-section {
        padding: 40px 0 30px;
    }

    .header-section h1 {
        font-size: 1.8rem;
    }

    .header-section p {
        font-size: 0.95rem;
    }

    .breadcrumb-section h1,
    .page-header h1 {
        font-size: 1.8rem;
    }

    /* Welcome Section */
    .welcome-section h1 {
        font-size: 1.8rem;
    }

    .welcome-section p {
        font-size: 1rem;
    }

    .welcome-section {
        padding: 30px 20px;
    }

    /* Section Titles */
    .section-title {
        font-size: 1.8rem;
    }

    /* Hero Content */
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn-hero {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    /* Cards */
    .service-card h6 {
        font-size: 0.95rem;
    }

    .quick-link-card h5 {
        font-size: 1rem;
    }

    .quick-link-icon {
        font-size: 2.5rem;
    }

    .news-card h5 {
        font-size: 1rem;
    }

    .news-card .card-text {
        font-size: 0.9rem;
    }

    .hero-carousel .carousel-item {
        border-radius: 10px;
    }

    /* Stats */
    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    /* Search Bar */
    .search-bar {
        margin-top: 20px;
    }

    .search-bar input {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .search-bar button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* Top Bar */
    .top-bar {
        font-size: 0.75rem;
    }

    /* Footer */
    .footer {
        margin-top: 50px;
        padding: 30px 0 20px;
    }

    .footer h5 {
        font-size: 1.1rem;
    }

    .footer-links {
        font-size: 0.9rem;
    }

    /* Contact Page */
    .contact-info-simple {
        padding: 25px;
    }

    .contact-item {
        flex-direction: column;
    }

    .contact-item i {
        margin-bottom: 10px;
    }

    .contact-detail {
        margin-left: 0rem;
    }

    .map-container iframe {
        height: 300px;
    }

    /* Tables */
    .table-pegawai {
        font-size: 0.8rem;
    }

    .table-pegawai thead th {
        padding: 10px 6px;
        font-size: 0.75rem;
    }

    .table-pegawai tbody td {
        padding: 10px 6px;
    }

    .content-card .pagination .page-link {
        padding: 6px 10px;
        font-size: 0.85rem;
        margin: 0 2px;
    }

    /* Content */
    .content-card {
        padding: 30px 20px;
    }

    .content-card h2 {
        font-size: 1.5rem;
    }

    .content-card p,
    .content-card ul li {
        font-size: 0.95rem;
    }

    /* Sidebar */
    .sidebar-card {
        position: relative;
        top: 0;
    }

    /* Kritik Saran */
    .kritik-saran-card {
        padding: 30px 25px;
    }

    .form-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .kritik-saran-card h3 {
        font-size: 1.5rem;
    }
}

/* --- BREAKPOINT: 576px (Mobile Phones) --- */
@media (max-width: 576px) {
    /* Navigation */
    .navbar-brand {
        font-size: 0.95rem;
    }

    .top-bar {
        font-size: 0.7rem;
        padding: 6px 0;
    }

    /* Welcome Section */
    .welcome-section h1 {
        font-size: 1.5rem;
    }

    .welcome-section p {
        font-size: 0.9rem;
    }

    /* Section Titles */
    .section-title {
        font-size: 1.5rem;
    }

    /* Buttons */
    .btn-hero {
        padding: 8px 20px;
        font-size: 0.85rem;
        display: block;
        margin: 10px auto !important;
        width: fit-content;
    }

    /* Stats */
    .stat-number {
        font-size: 1.5rem;
    }

    .stat-item {
        padding: 15px 10px;
    }

    .stat-item h3 {
        font-size: 1.5rem;
    }

    .stat-item i {
        font-size: 2rem;
    }

    /* News Cards */
    .news-card-img {
        height: 180px;
    }

    .news-card-title {
        font-size: 1rem;
    }

    .stats-card h3 {
        font-size: 1.5rem;
    }

    .stats-card i {
        font-size: 2rem;
    }

    /* Filters */
    .filter-pill {
        font-size: 0.8rem;
        padding: 8px 15px;
        margin: 5px;
    }

    .filter-pills .btn {
        font-size: 0.8rem;
        padding: 6px 12px;
        margin: 3px;
    }

    /* Announcements */
    .announcement-item {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .announcement-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-right: 0;
    }

    .announcement-title {
        font-size: 1rem;
    }

    .announcement-meta {
        flex-direction: column;
        gap: 8px;
    }

    .announcement-actions {
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
    }

    .btn-detail,
    .btn-download {
        text-align: center;
        justify-content: center;
        width: 100%;
    }

    /* Forms */
    .input-group .form-control {
        font-size: 0.9rem;
    }

    .input-group .btn {
        padding: 8px 15px;
    }

    /* Pagination */
    .pagination {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }

    .pagination .page-item {
        margin: 0;
    }

    .pagination .page-link {
        padding: 8px 12px;
        font-size: 0.85rem;
        margin: 0;
        min-width: 40px;
        text-align: center;
    }

    /* Lists */
    .list-item {
        padding: 15px;
    }

    .list-item h5 {
        font-size: 1rem;
    }

    .list-item .btn {
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    /* Stats Cards */
    .stats-card {
        margin-bottom: 15px;
        padding: 20px 15px;
    }

    /* Quick Links */
    .quick-links {
        padding-top: 20px;
    }

    .hero-section {
        padding: 20px 0;
    }

    /* Contact */
    .contact-detail {
        margin-left: 0rem;
    }
}