/* ============================================================
   WASTE MANAGEMENT SYSTEM - MAIN STYLESHEET
   Responsive, professional, framework-free CSS
   ============================================================ */

/* ============================================================
   ROOT & GLOBAL STYLES
   ============================================================ */

:root {
    --primary-color: #2ecc71;
    --secondary-color: #3498db;
    --danger-color: #e74c3c;
    --warning-color: #f39c12;
    --success-color: #27ae60;
    --info-color: #3498db;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --border-color: #bdc3c7;
    --text-color: #34495e;
    --bg-color: #f8f9fa;
    
    --border-radius: 6px;
    --box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* ============================================================
   CONTAINER & LAYOUT
   ============================================================ */

.container-main {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.sidebar + .main-content {
    flex: 1;
}

/* ============================================================
   HEADER
   ============================================================ */

.header {
    background-color: var(--dark-color);
    color: white;
    padding: 1.5rem 2rem;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 5px;
    margin-right: 1rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.logo-section {
    flex: 1;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.brand-logo:hover {
    transform: translateY(-1px);
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary-color), #8de0af);
    color: #173038;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0;
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.25);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-text strong {
    font-size: 1.35rem;
    color: white;
}

.brand-text small {
    margin-top: 0.2rem;
    color: rgba(255,255,255,0.68);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06rem;
    text-transform: uppercase;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
    letter-spacing: 1px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.user-info {
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.role-badge {
    background-color: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: var(--border-radius);
    font-size: 0.8rem;
    font-weight: bold;
}

.btn-logout, .btn-login {
    padding: 0.6rem 1.2rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-logout:hover, .btn-login:hover {
    background-color: var(--success-color);
}

/* ============================================================
   SIDEBAR NAVIGATION
   ============================================================ */

.sidebar {
    width: 250px;
    background-color: #34495e;
    color: white;
    padding: 1.5rem 0;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    top: 0;
    left: 0;
    margin-top: 0;
    z-index: 99;
    transition: transform 0.3s ease;
}

.sidebar.mobile-open {
    transform: translateX(0);
}

.sidebar-nav {
    margin-top: 70px;
}

.nav-list {
    list-style: none;
}

.nav-item {
    margin: 0;
}

.nav-link {
    display: block;
    padding: 1rem 1.5rem;
    color: #ecf0f1;
    text-decoration: none;
    transition: var(--transition);
    border-left: 4px solid transparent;
    font-size: 0.95rem;
}

.nav-link:hover, .nav-link.active {
    background-color: #2c3e50;
    border-left-color: var(--primary-color);
    padding-left: 1rem;
}

.nav-section-title {
    padding: 1rem 1.5rem 0.5rem;
    color: #95a5a6;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

/* ============================================================
   MAIN CONTENT AREA
   ============================================================ */

.main-content {
    margin-left: 250px;
    margin-top: 70px;
    padding: 2rem;
    flex: 1;
    max-width: calc(100% - 250px);
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-color);
}

.page-header h2 {
    margin: 0;
    font-size: 2rem;
    color: var(--dark-color);
}

.page-header p {
    color: #7f8c8d;
    margin: 0.5rem 0 0 0;
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn, button {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 0.95rem;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--success-color);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    background-color: var(--light-color);
    border-color: var(--text-color);
}

.btn-danger {
    background-color: var(--danger-color);
    color: white;
}

.btn-danger:hover {
    background-color: #c0392b;
}

.btn-block {
    width: 100%;
    display: block;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-small {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
}

/* ============================================================
   STATISTICS GRID & CARDS
   ============================================================ */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.dashboard-stats {
    grid-template-columns: repeat(6, minmax(150px, 1fr));
    gap: 1rem;
}

.stat-card {
    background-color: white;
    padding: 1.35rem;
    border-radius: var(--border-radius);
    box-shadow: 0 12px 30px rgba(28, 49, 55, 0.08);
    text-align: left;
    transition: var(--transition);
    border: 1px solid #e4ece8;
    border-top: 4px solid var(--primary-color);
    min-height: 150px;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(28, 49, 55, 0.12);
}

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 1rem;
    background-color: #e8f8ef;
    color: #188c4a;
    border-radius: var(--border-radius);
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0;
}

.stat-card h3 {
    font-size: 0.78rem;
    color: #65767b;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-weight: 800;
    letter-spacing: 0.04rem;
}

.stat-number {
    font-size: 1.9rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.1;
}

.stat-card-bins .stat-icon {
    background-color: #e8f2ff;
    color: #2269b0;
}

.stat-card-pickups .stat-icon {
    background-color: #fff4df;
    color: #a26000;
}

.stat-card-complaints .stat-icon {
    background-color: #ffe8e8;
    color: #b23535;
}

.stat-card-payments .stat-icon {
    background-color: #e9f8ed;
    color: #148545;
}

.stat-card-staff .stat-icon {
    background-color: #f0ebff;
    color: #6040aa;
}

/* ============================================================
   FORMS
   ============================================================ */

.form-container {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
}

.form {
    max-width: 800px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="time"],
select,
textarea {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-color);
}

/* ============================================================
   ALERTS & MESSAGES
   ============================================================ */

.alert {
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.alert-success {
    background-color: #d4edda;
    border-color: var(--success-color);
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: var(--danger-color);
    color: #721c24;
}

.alert-warning {
    background-color: #fff3cd;
    border-color: var(--warning-color);
    color: #856404;
}

.alert-info {
    background-color: #d1ecf1;
    border-color: var(--info-color);
    color: #0c5460;
}

/* ============================================================
   TABLES
   ============================================================ */

.table-responsive {
    overflow-x: auto;
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    -webkit-overflow-scrolling: touch;
    position: relative;
}

.scroll-hint {
    display: none;
    position: absolute;
    bottom: 5px;
    right: 10px;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.8rem;
    pointer-events: none;
}

@media (max-width: 768px) {
    .scroll-hint {
        display: block;
    }
}

.table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
}

.table thead {
    background-color: var(--dark-color);
    color: white;
}

.table th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--light-color);
}

.table tbody tr:hover {
    background-color: var(--bg-color);
    transition: var(--transition);
}

.table .actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* ============================================================
   BADGES
   ============================================================ */

.badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-pending {
    background-color: #fff3cd;
    color: #856404;
}

.badge-assigned {
    background-color: #d1ecf1;
    color: #0c5460;
}

.badge-in_progress {
    background-color: #cfe2ff;
    color: #084298;
}

.badge-completed {
    background-color: #d1e7dd;
    color: #0f5132;
}

.badge-cancelled {
    background-color: #f8d7da;
    color: #842029;
}

.badge-active {
    background-color: #d1e7dd;
    color: #0f5132;
}

.badge-inactive {
    background-color: #e2e3e5;
    color: #383d41;
}

.badge-suspended {
    background-color: #f8d7da;
    color: #842029;
}

.badge-new {
    background-color: #cfe2ff;
    color: #084298;
}

.badge-in_review {
    background-color: #fff3cd;
    color: #856404;
}

.badge-acknowledged {
    background-color: #d1ecf1;
    color: #0c5460;
}

.badge-resolved {
    background-color: #d1e7dd;
    color: #0f5132;
}

.badge-closed {
    background-color: #e2e3e5;
    color: #383d41;
}

.badge-low {
    background-color: #d1e7dd;
    color: #0f5132;
}

.badge-medium {
    background-color: #fff3cd;
    color: #856404;
}

.badge-high {
    background-color: #f8d7da;
    color: #842029;
}

.badge-critical {
    background-color: #e74c3c;
    color: white;
}

.badge-normal {
    background-color: #d1ecf1;
    color: #0c5460;
}

.badge-emergency {
    background-color: #e74c3c;
    color: white;
}

.badge-paid {
    background-color: #d1e7dd;
    color: #0f5132;
}

.badge-unpaid {
    background-color: #f8d7da;
    color: #842029;
}

/* ============================================================
   DASHBOARD GRID
   ============================================================ */

.dashboard-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #203238, #285a54);
    color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 14px 34px rgba(28, 49, 55, 0.12);
}

.dashboard-hero h2 {
    margin: 0 0 0.65rem;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.05;
}

.dashboard-hero p:not(.section-kicker) {
    max-width: 640px;
    margin: 0;
    color: rgba(255,255,255,0.76);
}

.dashboard-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.dashboard-panel {
    background-color: white;
    padding: 1.25rem;
    border-radius: var(--border-radius);
    box-shadow: 0 12px 30px rgba(28, 49, 55, 0.08);
    border: 1px solid #e4ece8;
}

.panel-heading {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e4ece8;
}

.panel-heading h3 {
    margin: 0 0 0.35rem;
    color: var(--dark-color);
    font-size: 1.15rem;
}

.panel-heading p {
    margin: 0;
    color: #65767b;
    font-size: 0.9rem;
}

.dashboard-table-wrap {
    box-shadow: none;
    border-radius: var(--border-radius);
    margin-bottom: 0;
}

.dashboard-table th {
    padding: 0.9rem 1rem;
    font-size: 0.78rem;
}

.dashboard-table td {
    padding: 0.9rem 1rem;
}

/* ============================================================
   PROGRESS BAR
   ============================================================ */

.progress-bar {
    width: 100%;
    height: 20px;
    background-color: #ecf0f1;
    border-radius: 10px;
    overflow: hidden;
    display: inline-block;
    margin-right: 0.5rem;
    vertical-align: middle;
    width: 100px;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--success-color));
    width: 0%;
    transition: width 0.3s ease;
}

/* ============================================================
   FILTER SECTION
   ============================================================ */

.filter-section {
    background-color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
}

.filter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: flex-end;
}

.filter-form input,
.filter-form select {
    flex: 1;
    min-width: 150px;
}

.filter-form button {
    flex-shrink: 0;
}

/* ============================================================
   LOGIN PAGE
   ============================================================ */

.login-container {
    min-height: calc(100vh - 88px);
    display: grid;
    place-items: center;
    background-size: cover;
    background-position: center right;
    padding: 4rem 2rem;
}

.login-shell {
    width: 100%;
    max-width: 1080px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
    gap: 2rem;
    align-items: center;
}

.login-copy {
    color: white;
    max-width: 620px;
}

.login-copy h1 {
    font-size: clamp(2.5rem, 6vw, 5.25rem);
    line-height: 1.02;
    margin: 0 0 1rem;
}

.login-copy p:not(.section-kicker) {
    max-width: 560px;
    color: rgba(255,255,255,0.84);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.login-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.8rem;
}

.login-highlights span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0.5rem 0.8rem;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: var(--border-radius);
    background-color: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
    font-weight: 700;
    font-size: 0.9rem;
}

.login-box {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(0,0,0,0.28);
    width: 100%;
    border: 1px solid rgba(255,255,255,0.2);
}

.login-box-header {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1.8rem;
}

.login-box h2 {
    margin: 0 0 0.25rem;
    color: var(--dark-color);
    font-size: 1.65rem;
}

.login-box .subtitle {
    color: #7f8c8d;
    margin: 0;
}

.login-form {
    margin-bottom: 1.4rem;
}

.login-form .form-group {
    margin-bottom: 1rem;
}

.login-form input {
    background-color: #f7faf8;
    border-color: #d7e2dd;
}

.login-info {
    background-color: #f5f8f6;
    padding: 1rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    font-size: 0.88rem;
}

.login-info p {
    margin: 0;
}

.credential-list {
    display: grid;
    gap: 0.45rem;
    margin: 0.75rem 0;
}

.credential-list span {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: center;
}

.login-info code {
    background-color: #e8efe9;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    color: #203238;
    overflow-wrap: anywhere;
}

.credential-password {
    color: #65767b;
}

/* ============================================================
   HOME PAGE
   ============================================================ */

.home-page {
    background-color: #f5f8f6;
}

.home-hero {
    min-height: 620px;
    min-height: calc(100vh - 88px);
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center right;
    color: white;
    padding: 4.5rem 2rem;
}

.home-hero-content {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.home-kicker,
.section-kicker {
    color: #8de0af;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.home-hero h1 {
    font-size: clamp(3.2rem, 9vw, 7rem);
    line-height: 0.95;
    margin-bottom: 1rem;
}

.home-lead {
    max-width: 560px;
    font-size: 1.25rem;
    line-height: 1.65;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.92);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 1rem;
    max-width: 560px;
    margin-top: 2.2rem;
}

.hero-metrics div {
    border: 1px solid rgba(255,255,255,0.25);
    background-color: rgba(255,255,255,0.1);
    border-radius: var(--border-radius);
    padding: 1rem;
    backdrop-filter: blur(8px);
}

.hero-metrics strong {
    display: block;
    font-size: 1.55rem;
    line-height: 1;
}

.hero-metrics span {
    display: block;
    margin-top: 0.45rem;
    color: rgba(255,255,255,0.82);
    font-size: 0.9rem;
}

.home-section {
    width: calc(100% - 2rem);
    max-width: 1180px;
    margin: 0 auto;
    padding: 4.5rem 0;
}

.home-intro {
    padding-top: 4rem;
}

.section-heading {
    max-width: 680px;
    margin-bottom: 2rem;
}

.section-heading h2,
.home-cta h2 {
    color: #203238;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.12;
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.feature-card {
    background-color: white;
    padding: 1.6rem;
    border-radius: var(--border-radius);
    box-shadow: 0 12px 30px rgba(28, 49, 55, 0.08);
    transition: var(--transition);
    border: 1px solid #e4ece8;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(28, 49, 55, 0.12);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 1.2rem;
    background-color: #e8f8ef;
    color: #188c4a;
    border-radius: var(--border-radius);
    font-weight: 800;
    font-size: 0.9rem;
}

.feature-card h3 {
    margin: 0 0 0.65rem;
    color: #203238;
    font-size: 1.25rem;
}

.feature-card p {
    margin: 0;
    color: #65767b;
}

.home-process {
    background-color: #203238;
    color: white;
}

.home-process .section-heading h2 {
    color: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.process-step {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1.4rem;
}

.process-step span {
    color: #8de0af;
    font-weight: 800;
    font-size: 0.9rem;
}

.process-step h3 {
    margin: 0.75rem 0 0.6rem;
    color: white;
    font-size: 1.25rem;
}

.process-step p {
    color: rgba(255,255,255,0.76);
    margin: 0;
}

.blog-preview {
    max-width: 1220px;
}

.blog-heading {
    max-width: none;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.5rem;
}

.blog-heading > div {
    max-width: 760px;
}

.blog-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(290px, 360px);
    gap: 1rem;
    overflow-x: auto;
    padding: 0.25rem 0 1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: #8de0af #e4ece8;
}

.blog-carousel::-webkit-scrollbar {
    height: 10px;
}

.blog-carousel::-webkit-scrollbar-track {
    background-color: #e4ece8;
    border-radius: 99px;
}

.blog-carousel::-webkit-scrollbar-thumb {
    background-color: #8de0af;
    border-radius: 99px;
}

.blog-card {
    background-color: white;
    border: 1px solid #e4ece8;
    border-radius: var(--border-radius);
    box-shadow: 0 12px 30px rgba(28, 49, 55, 0.08);
    overflow: hidden;
    scroll-snap-align: start;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(28, 49, 55, 0.12);
}

.blog-image-link {
    display: block;
    height: 205px;
    overflow: hidden;
    background-color: #203238;
}

.blog-image-link img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center right;
    transition: transform 0.35s ease;
}

.blog-card:nth-child(2) .blog-image-link img {
    object-position: center center;
}

.blog-card:nth-child(3) .blog-image-link img {
    object-position: center left;
}

.blog-card:hover .blog-image-link img {
    transform: scale(1.04);
}

.blog-card-body {
    padding: 1.35rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 0 0 0.85rem;
    color: #65767b;
    font-size: 0.82rem;
    font-weight: 700;
}

.blog-meta span {
    color: #188c4a;
    text-transform: uppercase;
    letter-spacing: 0.04rem;
    white-space: nowrap;
}

.blog-card h3 {
    margin: 0 0 0.75rem;
    color: #203238;
    font-size: 1.28rem;
    line-height: 1.25;
}

.blog-card h3 a {
    color: inherit;
    text-decoration: none;
}

.blog-card h3 a:hover {
    color: var(--success-color);
}

.blog-card p[itemprop="description"] {
    margin: 0 0 1rem;
    color: #65767b;
}

.blog-read-more {
    color: #188c4a;
    font-weight: 800;
    text-decoration: none;
}

.blog-read-more:hover {
    color: #203238;
}

.blog-article-page {
    background-color: #f5f8f6;
}

.blog-article {
    width: calc(100% - 2rem);
    max-width: 1180px;
    margin: 0 auto;
    padding: 3rem 0 4.5rem;
}

.blog-article-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 2rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

.blog-article-copy {
    padding: 1rem 0;
}

.blog-back-link {
    display: inline-flex;
    margin-bottom: 1.25rem;
    color: #188c4a;
    font-weight: 800;
    text-decoration: none;
}

.blog-back-link:hover {
    color: #203238;
}

.blog-article h1 {
    margin: 0 0 1rem;
    color: #203238;
    font-size: clamp(2.25rem, 5vw, 4.4rem);
    line-height: 1.04;
}

.blog-article-excerpt {
    margin: 0 0 1.2rem;
    color: #4d6268;
    font-size: 1.18rem;
    line-height: 1.7;
}

.blog-article-meta {
    margin: 0;
    color: #65767b;
    font-weight: 700;
}

.blog-article-hero img {
    width: 100%;
    min-height: 390px;
    max-height: 520px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: 0 18px 46px rgba(28, 49, 55, 0.14);
}

.blog-article-body {
    max-width: 820px;
    margin: 0 auto;
    background-color: white;
    border: 1px solid #e4ece8;
    border-radius: var(--border-radius);
    box-shadow: 0 12px 30px rgba(28, 49, 55, 0.08);
    padding: 2.5rem;
}

.blog-article-body p {
    color: #34495e;
    font-size: 1.05rem;
    line-height: 1.85;
    margin: 0 0 1.2rem;
}

.blog-article-cta {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e4ece8;
}

.blog-article-cta h2 {
    color: #203238;
    margin: 0 0 0.7rem;
    font-size: 1.65rem;
}

.blog-article-cta p {
    margin-bottom: 1.4rem;
}

.home-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-page {
    background-color: #f5f8f6;
}

.contact-hero {
    min-height: 360px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center right;
    color: white;
    padding: 4rem 2rem;
}

.contact-hero-inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.contact-hero h1 {
    max-width: 760px;
    margin: 0 0 1rem;
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    line-height: 1.05;
}

.contact-hero p:not(.section-kicker) {
    max-width: 620px;
    margin: 0;
    color: rgba(255,255,255,0.86);
    font-size: 1.12rem;
    line-height: 1.7;
}

.contact-section {
    width: calc(100% - 2rem);
    max-width: 1180px;
    margin: 0 auto;
    padding: 4rem 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    gap: 1.5rem;
    align-items: stretch;
}

.contact-info-panel,
.contact-form-panel {
    background-color: white;
    border: 1px solid #e4ece8;
    border-radius: var(--border-radius);
    box-shadow: 0 12px 30px rgba(28, 49, 55, 0.08);
}

.contact-info-panel {
    background-color: #203238;
    color: white;
    padding: 2rem;
}

.contact-info-panel h2,
.contact-form-panel h2 {
    margin: 0 0 0.8rem;
    font-size: 1.7rem;
    color: inherit;
}

.contact-summary {
    color: rgba(255,255,255,0.76);
    margin: 0 0 2rem;
}

.contact-methods {
    display: grid;
    gap: 1rem;
}

.contact-method {
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.contact-method span {
    display: block;
    margin-bottom: 0.35rem;
    color: #8de0af;
    font-weight: 800;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06rem;
}

.contact-method a {
    color: white;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.contact-method a:hover {
    color: #8de0af;
}

.contact-method p {
    margin: 0;
    color: rgba(255,255,255,0.82);
}

.contact-form-panel {
    padding: 2rem;
}

.form-heading {
    margin-bottom: 1.5rem;
}

.contact-form {
    max-width: none;
}

.contact-form textarea {
    min-height: 160px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-info h3 {
    margin-top: 0;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item strong {
    color: var(--dark-color);
}

.contact-form-container {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form-container h3 {
    margin-top: 0;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* ============================================================
   INVOICE/DETAILS
   ============================================================ */

.invoice-container {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 800px;
    margin: 0 auto;
}

.invoice-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-color);
    margin-bottom: 2rem;
}

.invoice-header h1 {
    margin: 0;
    color: var(--dark-color);
}

.invoice-header p {
    margin: 0.5rem 0 0 0;
    color: #7f8c8d;
    font-size: 0.95rem;
}

.invoice-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.invoice-section {
    background-color: var(--bg-color);
    padding: 1rem;
    border-radius: var(--border-radius);
}

.invoice-section h3 {
    margin-top: 0;
    color: var(--dark-color);
}

.invoice-section p {
    margin: 0.5rem 0;
    line-height: 1.6;
}

.invoice-items {
    margin-bottom: 2rem;
}

.invoice-total {
    background-color: var(--bg-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: right;
    margin-bottom: 2rem;
}

.invoice-total p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.invoice-footer {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 2px solid var(--light-color);
    color: #7f8c8d;
}

.details-container {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 900px;
    margin: 0 auto;
}

.details-panel h3 {
    margin-top: 0;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-color);
}

.detail-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-color);
}

.detail-title-row h3 {
    margin: 0;
    padding: 0;
    border: 0;
}

.complaint-details-container .details-panel > .detail-item {
    margin-bottom: 1rem;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.detail-item {
    padding: 1rem;
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
}

.detail-item label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.detail-item p {
    margin: 0;
    line-height: 1.6;
}

.info-section {
    background-color: var(--light-color);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.info-section p {
    margin: 0.5rem 0;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
    background-color: var(--dark-color);
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer p {
    margin: 0.5rem 0;
}

.footer a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer a:hover {
    text-decoration: underline;
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

@media (max-width: 1024px) {
    .main-content {
        margin-left: 220px;
    }
    
    .sidebar {
        width: 220px;
    }

    .dashboard-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Show hamburger menu */
    .menu-toggle {
        display: flex;
    }
    
    /* Hide sidebar on desktop, show only on mobile when active */
    .sidebar {
        width: 100%;
        max-width: 250px;
        transform: translateX(-100%);
        top: 70px;
        height: calc(100vh - 70px);
        box-shadow: 2px 0 10px rgba(0,0,0,0.3);
    }
    
    .sidebar.mobile-open {
        transform: translateX(0);
    }
    
    body.menu-open {
        overflow: hidden; /* Prevent scrolling when menu is open */
    }
    
    .main-content {
        margin-left: 0;
        margin-top: 70px;
        padding: 1rem;
        max-width: 100%;
    }
    
    .header {
        padding: 1rem 1rem;
    }
    
    .header-content {
        flex-direction: row;
        align-items: center;
        gap: 0;
    }
    
    .logo-section {
        flex: 1;
    }
    
    .logo {
        font-size: 1.3rem;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
        border-radius: 8px;
    }

    .brand-text strong {
        font-size: 1.15rem;
    }

    .brand-text small {
        font-size: 0.62rem;
    }
    
    .header-nav {
        gap: 0.65rem;
        flex-shrink: 0;
    }

    .user-info {
        gap: 0.35rem;
        font-size: 0.85rem;
    }

    .welcome-label {
        display: none;
    }

    .user-info strong {
        max-width: 88px;
        line-height: 1.15;
        overflow-wrap: anywhere;
    }
    
    .page-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .page-header h2 {
        font-size: 1.5rem;
    }
    
    .header-actions {
        width: 100%;
        flex-wrap: wrap;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-container,
    .contact-layout,
    .invoice-details {
        grid-template-columns: 1fr;
    }

    .contact-hero {
        min-height: auto;
        padding: 3.5rem 1rem;
        background-position: center right 35%;
    }

    .contact-section {
        padding: 2.5rem 0;
    }

    .contact-info-panel,
    .contact-form-panel {
        padding: 1.4rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .dashboard-hero {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.4rem;
    }

    .dashboard-actions,
    .dashboard-actions .btn {
        width: 100%;
    }

    .dashboard-actions .btn {
        text-align: center;
    }

    .dashboard-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dashboard-panel {
        padding: 1rem;
    }

    .panel-heading {
        flex-direction: column;
    }

    .panel-heading .btn {
        width: 100%;
        text-align: center;
    }
    
    .filter-form {
        flex-direction: column;
    }
    
    .filter-form input,
    .filter-form select,
    .filter-form button {
        width: 100%;
    }
    
    .table-responsive {
        font-size: 0.85rem;
    }
    
    .table th, .table td {
        padding: 0.7rem 0.5rem;
    }

    .dashboard-table-wrap {
        overflow: visible;
    }

    .dashboard-table thead {
        display: none;
    }

    .dashboard-table,
    .dashboard-table tbody,
    .dashboard-table tr,
    .dashboard-table td {
        display: block;
        width: 100%;
    }

    .dashboard-table tr {
        background-color: white;
        border: 1px solid #e4ece8;
        border-radius: var(--border-radius);
        margin-bottom: 0.8rem;
        padding: 0.4rem 0;
    }

    .dashboard-table td {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        align-items: center;
        border-bottom: 1px solid #eef3f0;
        padding: 0.8rem 1rem;
        text-align: right;
    }

    .dashboard-table td:last-child {
        border-bottom: 0;
    }

    .dashboard-table td::before {
        content: attr(data-label);
        color: #65767b;
        font-weight: 800;
        text-align: left;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
    
    .login-box {
        padding: 1.5rem;
    }

    .login-container {
        min-height: auto;
        padding: 3rem 1rem;
        background-position: center right 35%;
    }

    .login-shell {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .login-copy {
        max-width: none;
    }

    .login-copy p:not(.section-kicker) {
        font-size: 1rem;
    }

    .login-highlights {
        gap: 0.5rem;
        margin-top: 1.2rem;
    }
    
    .home-hero {
        min-height: auto;
        padding: 4rem 1rem 3rem;
        background-position: center right 28%;
    }

    .home-lead {
        max-width: 100%;
        font-size: 1.05rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .hero-metrics,
    .features-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .hero-metrics {
        max-width: 100%;
    }

    .home-section {
        padding: 3rem 0;
    }

    .blog-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-heading .btn {
        width: 100%;
        text-align: center;
    }

    .blog-carousel {
        grid-auto-columns: minmax(280px, 86vw);
        padding-bottom: 0.85rem;
    }

    .blog-article {
        padding: 2rem 0 3rem;
    }

    .blog-article-hero {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-article-hero img {
        min-height: 260px;
        max-height: 360px;
    }

    .blog-article-body {
        padding: 1.5rem;
    }

    .home-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-cta .btn {
        width: 100%;
        text-align: center;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }

    .detail-title-row {
        flex-direction: column;
    }
    
    .invoice-details {
        grid-template-columns: 1fr;
    }
    
    /* Touch-friendly buttons on mobile */
    .btn, button {
        min-height: 44px;
        padding: 0.75rem 1rem;
    }
    
    /* Better spacing for forms on mobile */
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    input, select, textarea {
        min-height: 44px;
    }
    
    label {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .menu-toggle {
        display: flex;
        padding: 0.25rem;
    }
    
    .menu-toggle span {
        width: 20px;
        height: 2.5px;
        gap: 3px;
    }
    
    .logo {
        font-size: 1rem;
    }

    .brand-logo {
        gap: 0.45rem;
    }

    .brand-mark {
        width: 32px;
        height: 32px;
        font-size: 0.78rem;
    }

    .brand-text strong {
        font-size: 1rem;
    }

    .brand-text small {
        display: none;
    }
    
    .header {
        padding: 0.75rem 0.55rem;
    }
    
    .header-nav {
        gap: 0.45rem;
    }
    
    .user-info {
        font-size: 0.78rem;
    }

    .user-info strong {
        max-width: 48px;
    }

    .header-nav .user-info strong {
        display: none;
    }
    
    .role-badge {
        font-size: 0.68rem;
        padding: 0.35rem 0.45rem;
    }
    
    .btn-logout, .btn-login {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .main-content {
        margin-top: 60px;
        padding: 0.75rem;
    }
    
    .page-header h2 {
        font-size: 1.2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .dashboard-hero {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .stat-card {
        padding: 1rem;
        min-height: auto;
    }
    
    .stat-icon {
        width: 38px;
        height: 38px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .table th, .table td {
        padding: 0.5rem 0.25rem;
        font-size: 0.75rem;
    }
    
    .table .actions {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .btn-small {
        padding: 0.3rem 0.5rem;
        font-size: 0.7rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .form-actions .btn {
        width: 100%;
        padding: 0.7rem;
    }
    
    .login-box {
        padding: 1.25rem;
    }
    
    .login-box h2 {
        font-size: 1.35rem;
    }

    .login-container {
        padding: 2rem 1rem;
    }

    .login-box-header {
        align-items: flex-start;
        margin-bottom: 1.4rem;
    }

    .credential-list span {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .home-hero {
        padding: 3rem 1rem 2.5rem;
    }

    .home-kicker,
    .section-kicker {
        font-size: 0.72rem;
    }

    .hero-metrics {
        gap: 0.65rem;
        margin-top: 1.4rem;
    }

    .hero-metrics div,
    .feature-card {
        padding: 1rem;
    }

    .feature-card h3,
    .process-step h3 {
        font-size: 1.1rem;
    }

    .blog-carousel {
        grid-auto-columns: 88vw;
    }

    .blog-image-link {
        height: 175px;
    }

    .blog-card-body {
        padding: 1rem;
    }

    .blog-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.35rem;
    }

    .blog-card h3 {
        font-size: 1.12rem;
    }

    .blog-article {
        width: calc(100% - 1.5rem);
        padding-top: 1.5rem;
    }

    .blog-article-copy {
        padding: 0;
    }

    .blog-article-hero img {
        min-height: 210px;
    }

    .blog-article-body {
        padding: 1rem;
    }

    .blog-article-body p {
        font-size: 1rem;
        line-height: 1.75;
    }

    .blog-article-cta h2 {
        font-size: 1.35rem;
    }
    
    .filter-section {
        padding: 1rem;
    }
    
    .filter-form {
        gap: 0.5rem;
    }
    
    .invoice-header {
        padding-bottom: 1rem;
    }
    
    .invoice-header h1 {
        font-size: 1.3rem;
    }
    
    .invoice-section {
        padding: 0.75rem;
    }
    
    .invoice-total {
        padding: 1rem;
    }
    
    .detail-item {
        padding: 0.75rem;
    }
    
    .dashboard-panel {
        padding: 1rem;
    }
    
    .dashboard-panel h3 {
        font-size: 1.1rem;
    }
    
    .alert {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
        font-size: 0.9rem;
    }
    
    .badge {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }
    
    /* Touch-friendly minimum sizes */
    .btn, button, input, select, textarea {
        min-height: 44px;
    }
    
    /* Stack elements for better mobile viewing */
    .contact-container,
    .contact-layout {
        gap: 1rem;
    }

    .contact-hero {
        padding: 2.5rem 1rem;
    }

    .contact-hero p:not(.section-kicker) {
        font-size: 1rem;
    }

    .contact-info-panel,
    .contact-form-panel {
        padding: 1rem;
    }
    
    .invoice-details {
        gap: 1rem;
    }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */

@media print {
    .header, .sidebar, .header-actions, .filter-section, .page-header, button {
        display: none;
    }
    
    .main-content {
        margin: 0;
        margin-top: 0;
        padding: 0;
    }
    
    body {
        background-color: white;
    }
    
    .invoice-container, .details-container {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}
