* { margin: 0; padding: 0; box-sizing: border-box; }
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap');

body {
    font-family: 'Nunito', 'Segoe UI', Tahoma, sans-serif;
    background: #0f0f0f;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(244, 114, 182, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(190, 24, 93, 0.08) 0%, transparent 70%);
    min-height: 100vh;
    padding: 0;
    position: relative;
    overflow-x: hidden;
    color: #fce7f3;
}

/* ===== PIN MODAL ===== */
.pin-modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(8px);
    z-index: 9999; display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.pin-modal-overlay.active { opacity: 1; visibility: visible; }
.pin-modal {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1a2d 100%);
    border: 2px solid #ec4899; border-radius: 20px; padding: 30px;
    width: 90%; max-width: 400px; text-align: center;
    box-shadow: 0 0 40px rgba(236, 72, 153, 0.4);
    transform: scale(0.9); transition: transform 0.3s ease;
}
.pin-modal-overlay.active .pin-modal { transform: scale(1); }
.pin-header { margin-bottom: 15px; }
.pin-header i { font-size: 40px; color: #ec4899; margin-bottom: 10px; }
.pin-header h3 { color: #f472b6; font-size: 22px; font-weight: 900; }
.pin-modal p { color: #f9a8d4; font-size: 14px; margin-bottom: 20px; }
.pin-input {
    width: 100%; padding: 12px 16px; border: 2px solid #2d2d2d;
    border-radius: 12px; background: #0f0f0f; color: #fce7f3;
    font-size: 18px; text-align: center; letter-spacing: 4px;
    margin-bottom: 20px; outline: none; transition: all 0.3s;
}
.pin-input:focus { border-color: #ec4899; box-shadow: 0 0 15px rgba(236, 72, 153, 0.3); }
.pin-actions { display: flex; gap: 10px; }
.pin-btn {
    flex: 1; padding: 12px; border-radius: 12px; border: none;
    font-size: 14px; font-weight: 800; cursor: pointer; transition: all 0.3s;
}
.pin-btn.cancel { background: #2d2d2d; color: #f9a8d4; }
.pin-btn.cancel:hover { background: #3d3d3d; }
.pin-btn.submit {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    color: #fff; box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
}
.pin-btn.submit:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(236, 72, 153, 0.6); }

/* ===== SIDEBAR ===== */
.sidebar-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.75); z-index: 998; opacity: 0; visibility: hidden; transition: all 0.3s ease; backdrop-filter: blur(8px); }
.sidebar-overlay.active { opacity: 1; visibility: visible; }
.sidebar {
    position: fixed; top: 0; left: -320px; width: 300px; max-width: 85vw; height: 100vh;
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
    z-index: 999; transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex; flex-direction: column;
    border-right: 3px solid #ec4899;
    box-shadow: 5px 0 40px rgba(236, 72, 153, 0.4);
    overflow-y: auto;
}
.sidebar.active { left: 0; }
.sidebar-header {
    display: flex; justify-content: space-between; align-items: center; padding: 20px;
    border-bottom: 2px solid #ec4899;
    background: linear-gradient(135deg, #be185d 0%, #831843 100%);
    position: sticky; top: 0; z-index: 10;
}
.sidebar-header h3 { color: #fff; font-size: 18px; font-weight: 800; }
.sidebar-close {
    background: #fff; color: #be185d; border: none; width: 35px; height: 35px;
    border-radius: 50%; cursor: pointer; font-size: 18px; font-weight: bold;
    transition: all 0.3s ease; box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.sidebar-close:hover { background: #fce7f3; transform: rotate(90deg) scale(1.1); }
.sidebar-nav { flex: 1; padding: 15px; display: flex; flex-direction: column; gap: 10px; }
.sidebar-menu-btn {
    background: #1a1a1a; color: #fce7f3; border: 2px solid #2d2d2d;
    padding: 14px 18px; border-radius: 14px; cursor: pointer; font-size: 14px;
    font-weight: 700; transition: all 0.3s ease; display: flex; align-items: center;
    gap: 12px; text-align: left; text-decoration: none; width: 100%;
}
.sidebar-menu-btn:hover {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    color: #fff; border-color: #ec4899;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
}
.sidebar-menu-btn .menu-icon { font-size: 20px; min-width: 28px; text-align: center; }
.sidebar-menu-btn.home-btn {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    color: #fff; border-color: #f472b6; margin-bottom: 10px;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}
.sidebar-menu-btn.warning {
    background: linear-gradient(135deg, #e53e3e 0%, #991b1b 100%);
    color: #fff; border-color: #f56565;
    animation: pulseWarning 2s ease-in-out infinite;
}
.sidebar-menu-btn.special {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff; border-color: #fbbf24;
    animation: pulse 2s ease-in-out infinite;
}
.sidebar-footer {
    padding: 15px 20px; border-top: 2px solid #ec4899; text-align: center;
    color: #f9a8d4; font-size: 12px; font-weight: 600;
    background: #0f0f0f;
}
.external-badge { margin-left: auto; background: rgba(255,255,255,0.2); padding: 3px 8px; border-radius: 8px; font-size: 11px; }
.badge-count { margin-left: auto; background: #ff1493; color: #fff; min-width: 22px; height: 22px; padding: 0 6px; border-radius: 11px; font-size: 11px; font-weight: bold; display: flex; align-items: center; justify-content: center; }

/* ===== ACCORDION ===== */
.accordion-group { margin-bottom: 8px; border-radius: 12px; overflow: hidden; background: rgba(255, 255, 255, 0.05); }
.accordion-header { width: 100%; background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%); color: #f9a8d4; border: 2px solid #2d2d2d; padding: 12px 16px; border-radius: 12px; cursor: pointer; font-size: 14px; font-weight: 700; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center; text-align: left; }
.accordion-header:hover { background: linear-gradient(135deg, #ec4899 0%, #be185d 100%); color: #fff; border-color: #ec4899; }
.accordion-header .accordion-title { display: flex; align-items: center; gap: 8px; }
.accordion-header .accordion-icon { transition: transform 0.3s ease; font-size: 12px; }
.accordion-group.active .accordion-header { background: linear-gradient(135deg, #ec4899 0%, #be185d 100%); color: #fff; border-radius: 12px 12px 0 0; border-color: #ec4899; }
.accordion-group.active .accordion-icon { transform: rotate(180deg); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; background: rgba(0, 0, 0, 0.3); border-radius: 0 0 12px 12px; }
.accordion-content .sidebar-menu-btn { margin: 8px; padding: 10px 14px; font-size: 13px; width: calc(100% - 16px); }
.accordion-group.active .accordion-content { padding: 5px 0; }

/* ===== STICKY HEADER ===== */
.sticky-header {
    position: sticky; top: 0; z-index: 50;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 15px 20px;
    border-bottom: 3px solid #ec4899;
    box-shadow: 0 5px 30px rgba(236, 72, 153, 0.3);
}
.header-top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; max-width: 1200px; margin: 0 auto; }
.header-title { flex: 1; text-align: center; }
.header-title h1 { color: #fff; font-size: 22px; margin-bottom: 3px; font-weight: 900; text-shadow: 0 0 20px rgba(236, 72, 153, 0.6); }
.header-title p { color: #f9a8d4; font-size: 12px; font-weight: 600; }
.hamburger-btn {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    color: #fff; border: none; padding: 10px 18px; border-radius: 12px;
    cursor: pointer; font-size: 14px; font-weight: 800;
    transition: all 0.3s ease; display: flex; align-items: center; gap: 8px;
    order: -1; box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
}
.hamburger-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(236, 72, 153, 0.6); }

/* ===== CLOCK ===== */
.clock-container {
    display: flex; align-items: center; gap: 12px;
    background: #1a1a1a; padding: 10px 15px; border-radius: 14px;
    border: 2px solid #ec4899;
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.3);
}
.analog-clock {
    width: 55px; height: 55px;
    background: radial-gradient(circle, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 50%; border: 3px solid #ec4899; position: relative;
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.5);
}
.clock-face { width: 100%; height: 100%; position: relative; }
.hour-hand, .minute-hand, .second-hand { position: absolute; bottom: 50%; left: 50%; transform-origin: bottom center; border-radius: 4px; }
.hour-hand { width: 3px; height: 14px; background: #ec4899; margin-left: -1.5px; }
.minute-hand { width: 2px; height: 18px; background: #f472b6; margin-left: -1px; }
.second-hand { width: 1.5px; height: 22px; background: #ff1493; margin-left: -0.75px; transition: transform 0.05s ease; box-shadow: 0 0 5px #ff1493; }
.clock-center { width: 6px; height: 6px; background: #ec4899; border-radius: 50%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); box-shadow: 0 0 8px #ec4899; }
.digital-clock { text-align: center; color: #fff; position: relative; }
.time-display { font-size: 20px; font-weight: 900; font-family: 'Courier New', monospace; color: #f472b6; text-shadow: 0 0 10px rgba(244, 114, 182, 0.6); }
.ms-display { font-size: 10px; font-family: 'Courier New', monospace; color: #fbbf24; font-weight: bold; margin-top: -2px; }
.date-display { font-size: 10px; color: #f9a8d4; margin-top: 2px; font-weight: 600; }
.timezone-badge {
    position: absolute; top: -5px; right: -5px;
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    color: #fff; padding: 1px 6px; border-radius: 8px;
    font-size: 9px; font-weight: 900;
    box-shadow: 0 2px 8px rgba(236, 72, 153, 0.5);
}

/* ===== CONTAINER & SECTIONS ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 20px; }
.content-section {
    background: #1a1a1a; padding: 25px; border-radius: 20px;
    box-shadow: 0 4px 30px rgba(236, 72, 153, 0.15);
    margin-bottom: 20px; animation: slideIn 0.4s ease;
    border: 1px solid #2d2d2d;
}
.section-header { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; flex-wrap: wrap; }
.section-header h2 { color: #f472b6; font-size: 22px; font-weight: 900; }
.back-btn {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    color: #fff; border: none; padding: 10px 20px; border-radius: 12px;
    cursor: pointer; font-size: 13px; font-weight: 700;
    transition: all 0.3s ease; box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}
.back-btn:hover { background: linear-gradient(135deg, #be185d 0%, #831843 100%); transform: translateX(-3px); }
.search-box { margin-bottom: 20px; }
.search-box input {
    width: 100%; padding: 12px 15px;
    border: 2px solid #2d2d2d; border-radius: 14px;
    font-size: 14px; background: #0f0f0f; color: #fce7f3;
    transition: all 0.3s ease; font-weight: 600;
}
.search-box input::placeholder { color: #6b7280; }
.search-box input:focus { outline: none; border-color: #ec4899; background: #1a1a1a; box-shadow: 0 0 15px rgba(236, 72, 153, 0.3); }

/* ===== HOME SECTION ===== */
.welcome-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1a2d 100%);
    padding: 25px; border-radius: 20px; margin-bottom: 20px;
    display: flex; align-items: center; gap: 20px;
    border: 2px solid #ec4899;
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.2);
    position: relative; overflow: hidden;
}
.welcome-card::before { content: '✨'; position: absolute; top: 10px; right: 15px; font-size: 30px; opacity: 0.3; }
.welcome-icon { font-size: 50px; animation: bounce 2s ease-in-out infinite; }
.welcome-content h2 { color: #f472b6; font-size: 22px; margin-bottom: 8px; font-weight: 900; }
.welcome-content p { color: #f9a8d4; font-size: 14px; line-height: 1.5; font-weight: 600; }
.running-text-container {
    background: #0f0f0f; border-radius: 14px; padding: 10px 15px;
    margin-bottom: 20px; display: flex; align-items: center; gap: 12px;
    overflow: hidden; border: 2px solid #ec4899;
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.2);
}
.running-text-label {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    color: #fff; padding: 4px 12px; border-radius: 8px;
    font-weight: 900; font-size: 12px; white-space: nowrap;
    box-shadow: 0 2px 8px rgba(236, 72, 153, 0.4);
}
.running-text-wrapper { flex: 1; overflow: hidden; }
.running-text {
    color: #f472b6; font-size: 14px; font-weight: 700;
    white-space: nowrap; display: inline-block;
    animation: scrollText 30s linear infinite; padding-left: 100%;
}
.quote-card { 
    background: linear-gradient(135deg, #2d1a2d 0%, #1a1a1a 100%);
    padding: 20px; border-radius: 20px; margin-bottom: 20px;
    text-align: center; border: 2px solid #ec4899;
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.15);
    position: relative;
}
.quote-card::before { content: '💖'; position: absolute; top: -10px; left: 20px; font-size: 24px; }
.quote-card p { color: #f9a8d4; font-size: 16px; font-style: italic; margin: 10px 0; font-weight: 600; }
.birthday-card {
    background: linear-gradient(135deg, #2d1a2d 0%, #1a1a1a 100%);
    padding: 20px; border-radius: 20px; margin-bottom: 20px;
    display: flex; align-items: center; gap: 20px;
    border: 2px solid #f472b6;
    box-shadow: 0 0 25px rgba(244, 114, 182, 0.3);
    animation: birthdayGlow 2s ease-in-out infinite;
}
@keyframes birthdayGlow { 0%, 100% { box-shadow: 0 0 25px rgba(244, 114, 182, 0.3); } 50% { box-shadow: 0 0 35px rgba(244, 114, 182, 0.6); } }
.birthday-icon { font-size: 50px; animation: bounce 1s ease-in-out infinite; }
.birthday-content h3 { color: #f472b6; margin-bottom: 5px; font-size: 18px; font-weight: 900; }
.birthday-content p { color: #fce7f3; font-weight: 600; }
.birthday-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: #25D366; color: #fff !important; padding: 8px 16px;
    border-radius: 12px; text-decoration: none; font-weight: 700;
    font-size: 13px; transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}
.birthday-btn:hover { background: #128C7E; transform: translateY(-2px); }
.agenda-card { background: #1a1a1a; padding: 20px; border-radius: 20px; border: 1px solid #2d2d2d; }
.agenda-card h2 { color: #f472b6; margin-bottom: 15px; font-size: 20px; border-bottom: 3px solid #ec4899; padding-bottom: 8px; font-weight: 900; }
.agenda-list { display: grid; gap: 10px; }
.agenda-item {
    display: flex; align-items: center; gap: 15px;
    background: #0f0f0f; padding: 12px; border-radius: 14px;
    border: 2px solid #2d2d2d; transition: all 0.3s;
}
.agenda-item:hover { transform: translateX(5px); border-color: #ec4899; box-shadow: 0 0 15px rgba(236, 72, 153, 0.3); }
.agenda-date {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    color: #fff; padding: 8px 12px; border-radius: 12px;
    text-align: center; min-width: 60px;
    box-shadow: 0 2px 8px rgba(236, 72, 153, 0.3);
}
.agenda-date .day { font-size: 20px; font-weight: 900; line-height: 1; }
.agenda-date .month { font-size: 11px; text-transform: uppercase; font-weight: 700; }
.agenda-info h4 { color: #f472b6; margin-bottom: 3px; font-size: 15px; font-weight: 800; }
.agenda-info p { color: #f9a8d4; font-size: 12px; font-weight: 600; }

/* ===== TABLES ===== */
.table-container { overflow-x: auto; border-radius: 16px; border: 2px solid #2d2d2d; }
table { width: 100%; border-collapse: collapse; background: #1a1a1a; }
th, td { padding: 12px 15px; text-align: left; border-bottom: 1px solid #2d2d2d; font-size: 14px; }
th {
    background: linear-gradient(135deg, #be185d 0%, #831843 100%);
    color: #fff; font-weight: 800; position: sticky; top: 0;
    text-transform: uppercase; letter-spacing: 0.5px; font-size: 12px;
}
tr:hover { background: #2d1a2d; }
td a { color: #f472b6; text-decoration: none; font-weight: 700; }
td a:hover { text-decoration: underline; color: #ec4899; }
.masked-nik { letter-spacing: 2px; color: #fbbf24; font-weight: 700; }

/* ===== CARDS & GRID ===== */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 15px; }
.info-card {
    background: #1a1a1a; padding: 20px; border-radius: 16px;
    border: 2px solid #2d2d2d; transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0,0,0,0.3);
}
.info-card:hover { transform: translateY(-3px); border-color: #ec4899; box-shadow: 0 8px 25px rgba(236, 72, 153, 0.3); }
.info-card h3 { color: #f472b6; margin-bottom: 10px; font-size: 18px; font-weight: 800; }
.info-card p { margin: 8px 0; font-size: 14px; color: #f9a8d4; font-weight: 600; }
.info-card a { color: #f472b6; text-decoration: none; font-weight: 700; }
.warning-card { border-color: #e53e3e !important; background: linear-gradient(135deg, #1a1a1a 0%, #2d1010 100%) !important; }
.warning-card h3 { color: #f87171 !important; }
.info-row { margin: 10px 0; padding: 8px; background: rgba(255,255,255,0.03); border-radius: 8px; }
.info-label { font-weight: 700; color: #f9a8d4; font-size: 12px; margin-bottom: 4px; }
.info-value { color: #fce7f3; font-size: 14px; }
.doc-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 15px; }
.doc-download { display: flex; gap: 10px; }
.btn-download { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px; color: #fff !important; padding: 10px 15px; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 13px; transition: all 0.3s ease; border: none; cursor: pointer; }
.btn-download:hover { transform: translateY(-2px); }
.btn-download.pdf { background: linear-gradient(135deg, #dc3545 0%, #c82333 100%); }
.btn-download.doc { background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); }
.btn-share { display: flex; gap: 8px; }
.btn-share-btn { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 8px 12px; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 12px; transition: all 0.3s ease; border: none; cursor: pointer; color: #fff; }
.btn-share-btn.wa { background: #25D366; }
.btn-share-btn.wa:hover { background: #128C7E; transform: translateY(-2px); }
.btn-share-btn.email { background: #EA4335; }
.btn-share-btn.email:hover { background: #D33426; transform: translateY(-2px); }
.sp-badge { display: inline-block; background: #e53e3e; color: #fff; padding: 3px 10px; border-radius: 10px; font-size: 11px; font-weight: bold; margin-left: 8px; }

/* ===== DOKUMEN ===== */
.doc-categories { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.category-btn {
    background: #1a1a1a; border: 2px solid #2d2d2d;
    color: #f9a8d4; padding: 8px 16px; border-radius: 20px;
    cursor: pointer; font-size: 13px; font-weight: 700;
    transition: all 0.3s ease;
}
.category-btn:hover { border-color: #ec4899; color: #ec4899; }
.category-btn.active {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    color: #fff; border-color: #ec4899;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.4);
}
.doc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 15px; }
.doc-item {
    background: #1a1a1a; border: 2px solid #2d2d2d;
    border-radius: 16px; padding: 18px;
    transition: all 0.3s ease; position: relative;
}
.doc-item::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(180deg, #ec4899 0%, #be185d 100%);
    border-radius: 16px 0 0 16px;
}
.doc-item:hover { transform: translateY(-3px); border-color: #ec4899; box-shadow: 0 8px 25px rgba(236, 72, 153, 0.3); }
.doc-header { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.doc-icon { font-size: 32px; min-width: 40px; text-align: center; }
.doc-info { flex: 1; }
.doc-title { font-size: 15px; font-weight: 800; color: #f472b6; margin-bottom: 4px; line-height: 1.3; }
.doc-category {
    display: inline-block;
    background: rgba(236, 72, 153, 0.15);
    color: #f472b6; padding: 2px 8px; border-radius: 8px;
    font-size: 10px; font-weight: 800; text-transform: uppercase;
    border: 1px solid rgba(236, 72, 153, 0.3);
}
.doc-meta { margin: 10px 0; padding: 8px; background: #0f0f0f; border-radius: 10px; font-size: 12px; color: #f9a8d4; font-weight: 600; border: 1px solid #2d2d2d; }
.doc-meta-item { display: flex; align-items: center; gap: 6px; margin: 4px 0; }
.doc-actions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 12px; }
.btn-doc-action {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 6px; padding: 8px; border-radius: 10px;
    text-decoration: none; font-weight: 700; font-size: 12px;
    transition: all 0.3s ease; border: none; cursor: pointer;
}
.btn-view { background: linear-gradient(135deg, #ec4899 0%, #be185d 100%); color: #fff; box-shadow: 0 2px 8px rgba(236, 72, 153, 0.3); }
.btn-view:hover { background: linear-gradient(135deg, #be185d 0%, #831843 100%); transform: translateY(-2px); }
.btn-download-doc { background: linear-gradient(135deg, #22c55e 0%, #15803d 100%); color: #fff; box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3); }
.btn-download-doc:hover { background: linear-gradient(135deg, #15803d 0%, #166534 100%); transform: translateY(-2px); }
.doc-empty { text-align: center; padding: 40px 20px; color: #6b7280; grid-column: 1 / -1; }
.doc-empty-icon { font-size: 60px; margin-bottom: 15px; opacity: 0.5; }

/* ===== INFO BOARD ===== */
.info-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 15px; margin-bottom: 25px; }
.info-stat-item { background: #1a1a1a; padding: 15px; border-radius: 12px; text-align: center; border: 2px solid #2d2d2d; transition: all 0.3s ease; }
.info-stat-item:hover { transform: translateY(-3px); border-color: #ec4899; }
.info-stat-icon { font-size: 24px; display: block; margin-bottom: 5px; }
.info-stat-label { display: block; font-size: 12px; color: #6b7280; margin-bottom: 3px; }
.info-stat-value { display: block; font-size: 24px; font-weight: bold; color: #f472b6; }
.info-categories { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.info-cat-btn {
    background: #1a1a1a; border: 2px solid #2d2d2d;
    color: #f9a8d4; padding: 8px 16px; border-radius: 20px;
    cursor: pointer; font-size: 13px; font-weight: 700;
    transition: all 0.3s ease;
}
.info-cat-btn:hover { border-color: #ec4899; color: #ec4899; }
.info-cat-btn.active {
    background: linear-gradient(135deg, #f97316 0%, #c2410c 100%);
    color: #fff; border-color: #f97316;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}
.info-board { display: grid; gap: 15px; }
.info-item {
    background: #1a1a1a; border-radius: 16px; padding: 20px;
    border: 2px solid #2d2d2d;
    box-shadow: 0 2px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}
.info-item:hover { transform: translateX(3px); border-color: #ec4899; box-shadow: 0 4px 20px rgba(236, 72, 153, 0.25); }
.info-item.priority-mendesak { border-color: #e53e3e; animation: pulseWarning 3s ease-in-out infinite; }
.info-item-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.info-item-title { font-size: 18px; font-weight: 900; color: #f472b6; flex: 1; line-height: 1.3; }
.info-item-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.info-badge { padding: 3px 10px; border-radius: 12px; font-size: 10px; font-weight: 800; text-transform: uppercase; color: #fff; }
.info-badge.kategori-pengumuman { background: linear-gradient(135deg, #ec4899 0%, #be185d 100%); }
.info-badge.kategori-memo { background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%); }
.info-badge.kategori-catatan { background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%); }
.info-badge.kategori-penting { background: linear-gradient(135deg, #f97316 0%, #ea580c 100%); }
.info-badge.kategori-update { background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%); }
.info-badge.priority-mendesak { background: linear-gradient(135deg, #e53e3e 0%, #991b1b 100%); }
.info-badge.priority-penting { background: linear-gradient(135deg, #f97316 0%, #c2410c 100%); }
.info-badge.priority-normal { background: linear-gradient(135deg, #22c55e 0%, #15803d 100%); }
.info-badge-new { background: #ff1493; animation: pulse 2s ease-in-out infinite; }
.info-item-meta { display: flex; gap: 15px; flex-wrap: wrap; padding: 8px 12px; background: #0f0f0f; border-radius: 10px; margin-bottom: 12px; font-size: 12px; color: #f9a8d4; font-weight: 600; border: 1px solid #2d2d2d; }
.info-meta-item { display: flex; align-items: center; gap: 5px; }
.info-item-content { font-size: 14px; line-height: 1.6; color: #fce7f3; white-space: pre-wrap; word-wrap: break-word; font-weight: 500; }
.info-item-content.collapsed { max-height: 120px; overflow: hidden; position: relative; }
.info-item-content.collapsed::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 50px; background: linear-gradient(to bottom, transparent, #1a1a1a); }
.info-toggle-btn {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    color: #fff; border: none; padding: 6px 14px; border-radius: 10px;
    cursor: pointer; font-size: 12px; font-weight: 700;
    margin-top: 8px; transition: all 0.3s ease;
}
.info-toggle-btn:hover { background: linear-gradient(135deg, #be185d 0%, #831843 100%); transform: scale(1.05); }
.info-item-footer { display: flex; justify-content: flex-end; margin-top: 12px; padding-top: 12px; border-top: 1px dashed #2d2d2d; }
.info-share-btn {
    display: inline-flex; align-items: center; gap: 6px;
    background: #25D366; color: #fff !important; padding: 6px 12px;
    border-radius: 10px; text-decoration: none; font-size: 12px;
    font-weight: 700; transition: all 0.3s ease;
}
.info-share-btn:hover { background: #128C7E; transform: translateY(-2px); }
.info-empty { text-align: center; padding: 40px 20px; color: #6b7280; }
.info-empty-icon { font-size: 60px; margin-bottom: 15px; opacity: 0.5; }

/* ===== MENU MINGGUAN ===== */
.menu-weekly-nav { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.menu-week-btn {
    background: #1a1a1a; border: 2px solid #2d2d2d;
    color: #f9a8d4; padding: 8px 16px; border-radius: 20px;
    cursor: pointer; font-size: 13px; font-weight: 700;
    transition: all 0.3s ease; white-space: nowrap;
}
.menu-week-btn:hover { border-color: #ec4899; color: #ec4899; }
.menu-week-btn.active {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    color: #fff; border-color: #ec4899;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.4);
}
.menu-weekly-container { display: grid; gap: 20px; }
.menu-day-card {
    background: #1a1a1a; border-radius: 20px; padding: 20px;
    border: 2px solid #2d2d2d;
    box-shadow: 0 2px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}
.menu-day-card:hover { border-color: #ec4899; box-shadow: 0 4px 20px rgba(236, 72, 153, 0.2); }
.menu-day-header { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; padding-bottom: 12px; border-bottom: 2px dashed #2d2d2d; }
.menu-day-icon { font-size: 32px; }
.menu-day-title h3 { color: #f472b6; font-size: 20px; margin-bottom: 3px; font-weight: 900; }
.menu-day-date { color: #f9a8d4; font-size: 13px; font-weight: 600; }
.menu-items { background: #0f0f0f; padding: 15px; border-radius: 14px; border: 2px solid #2d2d2d; }
.menu-items h4 { color: #f472b6; margin-bottom: 12px; font-size: 16px; display: flex; align-items: center; gap: 8px; font-weight: 800; }
.menu-list { display: flex; flex-wrap: wrap; gap: 8px; }
.menu-item-tag {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    color: #fff; padding: 6px 14px; border-radius: 16px;
    font-size: 13px; font-weight: 700;
    box-shadow: 0 2px 8px rgba(236, 72, 153, 0.3);
}
.menu-published {
    margin-top: 12px; padding: 8px 12px;
    background: rgba(236, 72, 153, 0.1);
    border-radius: 10px; font-size: 12px;
    color: #f9a8d4; display: flex; align-items: center; gap: 6px;
    font-weight: 600; border: 1px solid rgba(236, 72, 153, 0.2);
}

/* ===== RUTE DISTRIBUSI ===== */
.rute-summary-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; margin-bottom: 20px; }
.rute-summary-card {
    padding: 20px; border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    text-align: center; border: 2px solid;
}
.rute-summary-card.south {
    background: linear-gradient(135deg, #422006 0%, #1a1a1a 100%);
    border-color: #f59e0b; color: #fef3c7;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.2);
}
.rute-summary-card.north {
    background: linear-gradient(135deg, #075985 0%, #1a1a1a 100%);
    border-color: #0ea5e9; color: #e0f2fe;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.2);
}
.rute-summary-card h3 { font-size: 18px; margin-bottom: 12px; color: #fff; font-weight: 900; }
.rute-summary-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 12px; }
.rute-summary-stat { background: rgba(0,0,0,0.4); padding: 10px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); }
.rute-summary-stat .label { display: block; font-size: 11px; color: #f9a8d4; margin-bottom: 4px; font-weight: 700; }
.rute-summary-stat .value { display: block; font-size: 18px; font-weight: 900; color: #fff; }
.rute-summary-grand { padding-top: 12px; border-top: 2px dashed; margin-top: 8px; }
.rute-summary-card.south .rute-summary-grand { border-color: #f59e0b; }
.rute-summary-card.north .rute-summary-grand { border-color: #0ea5e9; }
.rute-summary-card.south .rute-summary-grand .label { color: #fbbf24; }
.rute-summary-card.south .rute-summary-grand .value { color: #fef3c7; }
.rute-summary-card.north .rute-summary-grand .label { color: #7dd3fc; }
.rute-summary-card.north .rute-summary-grand .value { color: #e0f2fe; }
.rute-tables-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 20px; }
.rute-table-wrapper { border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.3); border: 2px solid #2d2d2d; }
.rute-table-wrapper.south thead tr:first-child { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }
.rute-table-wrapper.north thead tr:first-child { background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%); }
.rute-table { width: 100%; border-collapse: collapse; background: #1a1a1a; }
.rute-table thead tr:first-child th { color: #fff; font-size: 14px; padding: 12px; text-align: center; font-weight: 900; }
.rute-table thead tr:nth-child(2) th { background: #0f0f0f; color: #f472b6; padding: 10px; text-align: left; font-size: 12px; text-transform: uppercase; font-weight: 800; border-bottom: 2px solid #ec4899; }
.rute-table thead tr:nth-child(2) th.center { text-align: center; }
.rute-table tbody td { padding: 12px; border-bottom: 1px solid #2d2d2d; font-size: 13px; color: #fce7f3; font-weight: 600; }
.rute-table tbody td.center { text-align: center; font-weight: 700; }
.rute-table tbody tr:hover { background: #2d1a2d; }
.rute-table tfoot { background: #0f0f0f; color: #f472b6; font-weight: 900; }
.rute-table tfoot td { padding: 12px; border-top: 2px solid #ec4899; }
.rute-table tfoot td.center { text-align: center; }
.rute-total-box {
    background: linear-gradient(135deg, #be185d 0%, #831843 100%);
    color: #fff; padding: 25px; border-radius: 20px;
    text-align: center; border: 2px solid #ec4899;
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.4);
}
.rute-total-box h3 { color: #fce7f3; margin-bottom: 15px; font-size: 20px; font-weight: 900; }
.rute-total-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.rute-total-item { background: rgba(0,0,0,0.3); padding: 15px; border-radius: 14px; border: 1px solid rgba(244, 114, 182, 0.3); }
.rute-total-label { display: block; font-size: 12px; color: #f9a8d4; margin-bottom: 6px; font-weight: 700; }
.rute-total-value { display: block; font-size: 24px; font-weight: 900; color: #fff; text-shadow: 0 0 10px rgba(244, 114, 182, 0.5); }

/* ===== DOWNLOAD BUTTON ===== */
.btn-download-rute {
    background: linear-gradient(135deg, #22c55e 0%, #15803d 100%);
    color: #fff; border: none; padding: 12px 24px; border-radius: 14px;
    cursor: pointer; font-size: 14px; font-weight: 800;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.3s ease; margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}
.btn-download-rute:hover { background: linear-gradient(135deg, #15803d 0%, #166534 100%); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4); }
.btn-download-rute:active { transform: translateY(0); }
.btn-download-rute:disabled { background: #4b5563; cursor: not-allowed; transform: none; box-shadow: none; }

/* ===== ANIMATIONS ===== */
@keyframes pulseWarning { 0%, 100% { box-shadow: 0 0 0 0 rgba(229, 62, 62, 0.6); } 50% { box-shadow: 0 0 0 12px rgba(229, 62, 62, 0); } }
@keyframes slideIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollText { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.6); } 50% { box-shadow: 0 0 0 12px rgba(236, 72, 153, 0); } }

/* ===== LIVE CHAT WIDGET ===== */
.chat-widget { position: fixed; bottom: 20px; right: 20px; z-index: 1100; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; font-family: 'Nunito', 'Segoe UI', sans-serif; }
.chat-toggle-btn {
    width: 65px; height: 65px; border-radius: 50%;
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    border: 3px solid #0f0f0f; color: #fff; font-size: 26px;
    cursor: pointer; box-shadow: 0 0 25px rgba(236, 72, 153, 0.6);
    transition: all 0.3s ease; display: flex; align-items: center;
    justify-content: center; position: relative;
    animation: chatPulse 2s ease-in-out infinite;
}
.chat-toggle-btn:hover { transform: scale(1.15) rotate(10deg); box-shadow: 0 0 35px rgba(236, 72, 153, 0.8); }
@keyframes chatPulse { 0%, 100% { box-shadow: 0 0 25px rgba(236, 72, 153, 0.6); } 50% { box-shadow: 0 0 40px rgba(236, 72, 153, 0.9); } }
.chat-badge {
    position: absolute; top: -2px; right: -2px; width: 20px; height: 20px;
    background: #ff1493; border-radius: 50%; border: 3px solid #0f0f0f;
    animation: badgePulse 1.5s ease-in-out infinite; box-shadow: 0 0 10px #ff1493;
    display: none;
}
.chat-badge.show { display: block; }
@keyframes badgePulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.25); } }
.chat-window {
    width: 380px; height: 520px; background: #1a1a1a; border-radius: 20px;
    box-shadow: 0 10px 50px rgba(236, 72, 153, 0.3);
    display: flex; flex-direction: column; overflow: hidden;
    animation: chatSlideIn 0.3s ease; border: 2px solid #ec4899;
}
@keyframes chatSlideIn { from { opacity: 0; transform: translateY(20px) scale(0.95); } to { opacity: 1; transform: translateY(0) scale(1); } }
.chat-header {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    color: #fff; padding: 14px 18px; display: flex;
    justify-content: space-between; align-items: center; flex-shrink: 0;
}
.chat-header h3 { margin: 0; font-size: 16px; font-weight: 900; }
.chat-header-info { display: flex; flex-direction: column; gap: 4px; }
.chat-header-meta { display: flex; align-items: center; gap: 10px; font-size: 11px; }
.chat-header-actions { display: flex; align-items: center; gap: 8px; }
.chat-user-label { font-weight: 700; color: #fce7f3; }

/* ===== ONLINE INDICATOR ===== */
.online-indicator {
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(0,0,0,0.25); padding: 3px 10px;
    border-radius: 12px; font-weight: 700; font-size: 11px;
}
.online-dot {
    width: 8px; height: 8px; background: #4ade80;
    border-radius: 50%; animation: onlinePulse 2s ease-in-out infinite;
    box-shadow: 0 0 6px #4ade80;
}
@keyframes onlinePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

/* ===== CHANGE NAME BUTTON ===== */
.chat-change-name-btn {
    background: rgba(255,255,255,0.2); border: none; color: #fff;
    width: 30px; height: 30px; border-radius: 50%; cursor: pointer;
    font-size: 14px; transition: all 0.3s ease;
    display: flex; align-items: center; justify-content: center;
}
.chat-change-name-btn:hover { background: rgba(255,255,255,0.35); transform: scale(1.1); }

.chat-close-btn {
    background: rgba(0,0,0,0.3); border: none; color: #fff;
    width: 30px; height: 30px; border-radius: 50%; cursor: pointer;
    font-size: 16px; font-weight: bold; transition: all 0.3s ease;
    display: flex; align-items: center; justify-content: center;
}
.chat-close-btn:hover { background: rgba(0,0,0,0.5); transform: rotate(90deg) scale(1.1); }
.chat-name-form { display: flex; flex-direction: column; height: 100%; }
.chat-name-body {
    flex: 1; padding: 30px 20px; display: flex; flex-direction: column;
    align-items: center; justify-content: center; text-align: center;
    background: linear-gradient(135deg, #2d1a2d 0%, #1a1a1a 100%);
}
.chat-welcome-icon { font-size: 55px; margin-bottom: 10px; animation: bounce 2s ease-in-out infinite; }
.chat-name-body h4 { color: #f472b6; font-size: 22px; margin: 0 0 8px 0; font-weight: 900; }
.chat-name-body p { color: #f9a8d4; font-size: 13px; margin: 0 0 20px 0; line-height: 1.4; font-weight: 600; }
.chat-name-body input {
    width: 100%; max-width: 260px; padding: 12px 16px;
    border: 2px solid #ec4899; border-radius: 14px; font-size: 14px;
    text-align: center; margin-bottom: 12px; transition: all 0.3s ease;
    outline: none; background: #0f0f0f; color: #fce7f3; font-weight: 700;
}
.chat-name-body input::placeholder { color: #6b7280; }
.chat-name-body input:focus { border-color: #f472b6; box-shadow: 0 0 20px rgba(236, 72, 153, 0.4); background: #1a1a1a; }
.chat-start-btn {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    color: #fff; border: none; padding: 12px 30px; border-radius: 14px;
    font-size: 14px; font-weight: 800; cursor: pointer;
    transition: all 0.3s ease; width: 100%; max-width: 260px;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
}
.chat-start-btn:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 6px 20px rgba(236, 72, 153, 0.6); }
.chat-hint { font-size: 11px !important; color: #f9a8d4 !important; margin-top: 15px !important; padding: 8px 12px; background: rgba(236, 72, 153, 0.1); border-radius: 10px; border: 1px solid rgba(236, 72, 153, 0.2); }
.chat-room { display: flex; flex-direction: column; height: 100%; }
.chat-messages {
    flex: 1; overflow-y: auto; padding: 15px; background: #0f0f0f;
    display: flex; flex-direction: column; gap: 12px;
}
.chat-messages::-webkit-scrollbar { width: 6px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb { background: #ec4899; border-radius: 3px; }
.chat-loading { text-align: center; padding: 20px; color: #6b7280; font-size: 13px; font-weight: 600; }
.chat-system-msg {
    text-align: center; padding: 6px 12px; font-size: 11px;
    color: #6b7280; font-style: italic; background: rgba(255,255,255,0.03);
    border-radius: 10px; align-self: center; max-width: 90%;
}
.chat-message { display: flex; flex-direction: column; max-width: 80%; animation: msgFadeIn 0.3s ease; }
@keyframes msgFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.chat-message-sender {
    font-size: 11px; margin-bottom: 3px; padding: 0 8px;
    font-weight: 800; display: flex; align-items: center; gap: 5px;
}
.admin-badge {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #000; padding: 1px 6px; border-radius: 6px;
    font-size: 9px; font-weight: 900; margin-left: 4px;
    box-shadow: 0 2px 6px rgba(251, 191, 36, 0.4);
}
.chat-message-bubble {
    padding: 10px 14px; border-radius: 16px; font-size: 13px;
    line-height: 1.4; word-wrap: break-word; box-shadow: 0 2px 8px rgba(0,0,0,0.3); font-weight: 600;
}
.chat-message-time { font-size: 10px; color: #6b7280; margin-top: 3px; padding: 0 8px; font-weight: 600; }
.chat-message-self { align-self: flex-end; align-items: flex-end; }
.chat-message-self .chat-message-bubble {
    border-bottom-right-radius: 4px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.chat-message-self .chat-message-time { text-align: right; }
.chat-message-admin { align-self: flex-start; align-items: flex-start; }
.chat-message-admin .chat-message-bubble {
    background: linear-gradient(135deg, #ff1493 0%, #c71585 100%) !important;
    color: #fff; border-bottom-left-radius: 4px;
    border: 1px solid #ff69b4;
    box-shadow: 0 2px 12px rgba(255, 20, 147, 0.4);
}
.chat-message-other { align-self: flex-start; align-items: flex-start; }
.chat-message-other .chat-message-bubble {
    background: #2d2d2d; color: #fce7f3; border-bottom-left-radius: 4px;
    border: 1px solid #3d3d3d;
}
.chat-input-area {
    display: flex; gap: 8px; padding: 12px; background: #1a1a1a;
    border-top: 2px solid #ec4899; flex-shrink: 0;
}
.chat-input-area input {
    flex: 1; padding: 10px 14px; border: 2px solid #2d2d2d;
    border-radius: 20px; font-size: 13px; outline: none;
    transition: all 0.3s ease; background: #0f0f0f; color: #fce7f3; font-weight: 600;
}
.chat-input-area input::placeholder { color: #6b7280; }
.chat-input-area input:focus { border-color: #ec4899; box-shadow: 0 0 10px rgba(236, 72, 153, 0.3); }
.chat-send-btn {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    border: none; color: #fff; cursor: pointer; font-size: 14px;
    transition: all 0.3s ease; display: flex; align-items: center;
    justify-content: center; flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(236, 72, 153, 0.4);
}
.chat-send-btn:hover { transform: scale(1.15) rotate(-15deg); box-shadow: 0 4px 15px rgba(236, 72, 153, 0.6); }
.chat-send-btn:active { transform: scale(0.95); }

/* ===== FOOTER ===== */
.footer { background: linear-gradient(135deg, #000 0%, #1a1a1a 100%); padding: 25px; border-radius: 15px; text-align: center; color: #ffd6e7; box-shadow: 0 5px 20px rgba(0,0,0,0.3); border: 2px solid #ec4899; margin-top: 20px; }
.footer p { margin: 5px 0; }
.footer-small { font-size: 12px; color: #f472b6; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .container { padding: 15px; }
    .sticky-header { padding: 12px 15px; }
    .header-top { flex-direction: column; text-align: center; gap: 10px; }
    .hamburger-btn { order: 0; align-self: flex-start; }
    .header-title h1 { font-size: 18px; }
    .clock-container { width: 100%; justify-content: center; padding: 8px 12px; }
    .time-display { font-size: 18px; }
    .analog-clock { width: 45px; height: 45px; }
    .hour-hand { height: 11px; } .minute-hand { height: 15px; } .second-hand { height: 18px; }
    th, td { padding: 8px 10px; font-size: 12px; }
    .welcome-card { flex-direction: column; text-align: center; padding: 20px; }
    .welcome-icon { font-size: 40px; }
    .birthday-card { flex-direction: column; text-align: center; }
    .rute-tables-grid { grid-template-columns: 1fr; }
    .rute-total-stats { grid-template-columns: 1fr; }
    .rute-summary-stats { grid-template-columns: 1fr; }
    .rute-total-value { font-size: 22px; }
    .section-header h2 { font-size: 18px; }
    .doc-actions-grid { grid-template-columns: 1fr; }
    .info-item-title { font-size: 16px; }
    .btn-download-rute { width: 100%; justify-content: center; }
    
    .chat-widget { bottom: 15px; right: 15px; }
    .chat-toggle-btn { width: 60px; height: 60px; font-size: 24px; }
    .chat-window { width: 100%; height: 85vh; position: fixed; bottom: 0; right: 0; left: 0; border-radius: 15px 15px 0 0; max-width: 100vw; }
    .chat-message { max-width: 85%; }
}
