/* ================================================
   IEDME Driver App - Main Stylesheet
   ================================================ */

/* ===== Login Page Styles ===== */
.login-page-body {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, #e0e7ff 0%, #f1f5f9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

.login-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0;
    border-radius: 24px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 380px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.login-card .card-body {
    padding: 2rem;
}

.login-page-body .btn-primary {
    background: #4f46e5;
    border: none;
    padding: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.2);
    transition: all 0.2s;
}

.login-page-body .btn-primary:active {
    transform: scale(0.98);
    background: #4338ca;
}

.login-page-body .form-control {
    padding: 0.8rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
}

.login-page-body .form-control:focus {
    background: white;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

.login-page-body .form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 0.4rem;
}

/* ===== Main App Styles ===== */
:root {
    --primary-color: #4f46e5;
    --bg-color: #f8fafc;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-color);
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    color: var(--text-primary);
}

/* Layout */
.app-header {
    background: white;
    height: 60px;
    /* Fixed height */
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    z-index: 100;
    flex-shrink: 0;
    position: relative;
    user-select: none;
}

.header-mode {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    transition: opacity 0.2s ease, transform 0.2s ease;
    opacity: 1;
    transform: translateY(0);
    background: white;
}

.header-mode.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    z-index: -1;
}

.nav-tab-btn {
    flex: 1;
    height: 100%;
    border: none;
    background: transparent;
    font-weight: 600;
    color: #94a3b8;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
}

.nav-tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.app-content {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.tab-pane {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Cards */
.route-card {
    background: white;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
    transition: transform 0.1s;
    cursor: pointer;
}

.route-card:active {
    transform: scale(0.98);
    background: #f1f5f9;
}

.badge-soft {
    background: #f1f5f9;
    color: #475569;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
}

/* Schedule Filter Buttons */
.btn-filter {
    background: white;
    color: #4b5563;
    border: 1px solid #e0e7ff;
    border-radius: 50px;
    padding: 3px 12px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-filter.active {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

/* Calendar */
.calendar-wrapper {
    background: white;
    padding: 15px;
    margin-bottom: 10px;
    border-bottom: 1px solid #e2e8f0;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    text-align: center;
    margin-top: 10px;
}

.cal-day-name {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    border-radius: 8px;
    position: relative;
    cursor: pointer;
    font-weight: 500;
}

.cal-day.today {
    background: #e0e7ff;
    color: #4f46e5;
    font-weight: 700;
}

.cal-day.selected {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 6px rgba(79, 70, 229, 0.3);
}

.cal-dot {
    width: 5px;
    height: 5px;
    background: #ef4444;
    border-radius: 50%;
    position: absolute;
    bottom: 4px;
}

/* Map & List Split */
#map-container {
    height: 50%;
    width: 100%;
    flex: 0 0 50%;
    background: #e2e8f0;
}

.stop-list {
    height: 50%;
    width: 100%;
    flex: 0 0 50%;
    overflow-y: auto;
    background: white;
    border-top: 1px solid #e2e8f0;
    padding-bottom: 80px;
}

/* Stop Item */
.stop-item {
    padding: 16px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
}

.stop-idx {
    min-width: 36px;
    height: 36px;
    padding: 0 4px;
    background: var(--primary-color);
    color: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 12px;
    margin-top: 2px;
}

.stop-actions {
    margin-top: 10px;
    display: flex;
    gap: 12px;
    justify-content: center;
    width: 100%;
}

.btn-action {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: none;
    text-decoration: none;
    transition: transform 0.1s;
}


.btn-action:active {
    transform: scale(0.95);
}

/* Compact Stop Item Styles */
.stop-item-compact {
    padding: 12px 16px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    transition: background 0.1s;
}

.stop-item-compact:active {
    background: #f8fafc;
}

.stop-num-circle {
    min-width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.stop-details-compact {
    flex: 1;
    min-width: 0;
}

.stop-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 4px;
}

.stop-title {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary);
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.stop-address {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 4px;
    line-height: 1.4;
}

.stop-phone {
    font-size: 13px;
    color: #10b981;
    font-weight: 500;
}

.stop-order-id {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 4px;
}

.stop-actions {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.action-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border: none;
    background: #f1f5f9;
    color: #475569;
    text-decoration: none;
    transition: all 0.1s;
    cursor: pointer;
}

.action-icon:active {
    transform: scale(0.95);
    background: #e2e8f0;
}

.stop-item-compact.office-item .stop-num-circle {
    background: #22c55e;
}


.btn-nav {
    background: #eff6ff;
    color: #2563eb;
}

.btn-nav:hover {
    background: #dbeafe;
    color: #1e40af;
}

.btn-call {
    background: #f0fdf4;
    color: #166534;
}

.btn-call:hover {
    background: #dcfce7;
    color: #14532d;
}

.btn-camera {
    background: #fff7ed;
    color: #c2410c;
    border: none;
}

.btn-camera:hover {
    background: #ffedd5;
    color: #9a3412;
}

.btn-gps {
    background: #fcfcfc;
    color: #cbd5e1;
}

.btn-gps:hover {
    background: #f1f5f9;
    color: #94a3b8;
}

.btn-gps-active {
    background: #f0fdf4 !important;
    color: #10b981 !important;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.2);
}

.btn-gps-active:hover {
    background: #dcfce7 !important;
    color: #059669 !important;
}

/* GPS Parking badges */
.gps-park-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #dcfce7;
    color: #15803d;
    border: 1px solid #bbf7d0;
    border-radius: 20px;
    padding: 2px 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.gps-suggest-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #e0f2fe;
    color: #0369a1;
    border: 1px solid #bae6fd;
    border-radius: 20px;
    padding: 2px 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.btn-sms {
    background: #fdf4ff;
    color: #86198f;
}

.btn-sms:hover {
    background: #fae8ff;
    color: #701a75;
}

.btn-map {
    background: #fef3c7;
    color: #92400e;
}

.btn-map:hover {
    background: #fde68a;
    color: #78350f;
}

.btn-memo {
    background: #f1f5f9;
    color: #94a3b8;
    border: none;
}

.btn-memo:hover {
    background: #e2e8f0;
}

.btn-memo-active {
    background: #f5f3ff;
    color: #7c3aed;
    border: none;
}

.btn-memo-active:hover {
    background: #ede9fe;
}

/* ===== Memo Modal Premium Styles ===== */
.memo-modal-dialog {
    max-width: 400px;
    width: 95%;
    margin: 10px auto;
}

.memo-modal-content {
    border-radius: 24px;
    border: none;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    height: 80vh;
    max-height: 800px;
    display: flex;
    flex-direction: column;
    background: #f8fafc;
}

.memo-modal-header {
    background: white;
    padding: 16px 20px 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f1f5f9;
    flex-shrink: 0;
}

.memo-tabs {
    display: flex;
    gap: 24px;
}

.memo-tab {
    padding-bottom: 12px;
    position: relative;
    cursor: pointer;
    font-weight: 500;
    color: #94a3b8;
    font-size: 15px;
    transition: all 0.2s;
}

.memo-tab.active {
    color: #3b82f6;
    font-weight: 600;
}

.memo-tab .tab-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #3b82f6;
    border-radius: 10px;
    transform: scaleX(0);
    transition: transform 0.2s;
}

.memo-tab.active .tab-indicator {
    transform: scaleX(1);
}

.btn-close-memo {
    border: none;
    background: transparent;
    color: #94a3b8;
    font-size: 20px;
    padding: 4px;
    transition: color 0.2s;
}

.btn-close-memo:hover {
    color: #475569;
}

.memo-modal-body {
    flex: 1;
    overflow-y: auto;
}

.memo-tab-pane {
    display: none;
    height: 100%;
}

.memo-tab-pane.active {
    display: block;
}

/* Chat Styles */
.memo-chat-container {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    min-height: 100%;
}

.memo-date-divider {
    display: flex;
    justify-content: center;
    margin-bottom: -8px;
}

.memo-date-divider span {
    background: #e2e8f0;
    color: #64748b;
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.memo-messages-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.memo-message-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.memo-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #e2e8f0;
}

.memo-message-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 80%;
}

.memo-user-name {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
    margin-left: 4px;
}

.memo-bubble-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.memo-bubble {
    background: white;
    padding: 10px 14px;
    border-radius: 16px;
    border-top-left-radius: 2px;
    font-size: 14px;
    color: #1e293b;
    border: 1px solid #f1f5f9;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
    line-height: 1.5;
}

.memo-bubble-img {
    background: white;
    padding: 4px;
    border-radius: 16px;
    border-top-left-radius: 2px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.memo-bubble-img img {
    width: 100%;
    border-radius: 12px;
}

.memo-message-item.me {
    flex-direction: row-reverse;
}

.memo-message-item.me .memo-bubble-wrapper {
    flex-direction: row-reverse;
}

.memo-message-item.me .memo-bubble {
    background: #eff6ff;
    border-top-left-radius: 16px;
    border-top-right-radius: 2px;
    border-color: #dbeafe;
}

.memo-time {
    font-size: 10px;
    color: #94a3b8;
    align-self: flex-end;
}

.btn-delete-msg {
    border: none;
    background: transparent;
    color: #cbd5e1;
    font-size: 14px;
    padding: 4px;
    transition: color 0.2s;
    opacity: 0;
}

.memo-message-item:hover .btn-delete-msg {
    opacity: 1;
}

.btn-delete-msg:hover {
    color: #ef4444;
}

/* FAB Styles */
.memo-fab-container {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    border-radius: 24px;
    padding: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #f1f5f9;
    z-index: 10;
}

.memo-fab {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: background 0.2s;
}

.memo-fab:hover {
    background: #f8fafc;
}

.memo-fab.btn-camera {
    color: #3b82f6;
}

.memo-fab.btn-gallery {
    color: #10b981;
}

.memo-fab-divider {
    width: 20px;
    height: 1px;
    background: #f1f5f9;
}

/* Photo Tab Styles */
.memo-photo-container {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.memo-photo-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 12px;
}

.memo-photo-header .label {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 0.5px;
}

.memo-photo-header .date {
    font-size: 12px;
    color: #3b82f6;
    font-weight: 600;
}

.memo-photo-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.memo-photo-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.memo-photo-main:hover img {
    transform: scale(1.05);
}

.memo-photo-overlay {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s;
}

.memo-photo-main:hover .memo-photo-overlay {
    opacity: 1;
}

.memo-section-title {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.memo-history-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.memo-history-item {
    background: #f1f5f9;
    padding: 10px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background 0.2s;
    cursor: pointer;
}

.memo-history-item:hover {
    background: #e2e8f0;
}

.memo-thumb {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    overflow: hidden;
    background: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.memo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.memo-thumb.hollow {
    background: transparent;
    border: 1px dashed #94a3b8;
    color: #94a3b8;
}

.memo-history-info .title {
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    margin: 0;
}

.memo-history-info .meta {
    font-size: 11px;
    color: #64748b;
    margin: 2px 0 0 0;
}

/* Footer Styles */
.memo-modal-footer {
    padding: 16px;
    background: white;
    border-top: 1px solid #f1f5f9;
    flex-shrink: 0;
}

.memo-input-wrapper {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.btn-attach {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #f1f5f9;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: background 0.2s;
}

.btn-attach:hover {
    background: #e2e8f0;
}

.memo-textarea {
    flex: 1;
    background: #f1f5f9;
    border: none;
    border-radius: 16px;
    padding: 10px 16px;
    font-size: 14px;
    resize: none;
    outline: none;
    max-height: 100px;
}

.btn-send-memo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #3b82f6;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 6px rgba(59, 130, 246, 0.3);
    transition: transform 0.1s;
}

.btn-send-memo:active {
    transform: scale(0.95);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

@media (max-width: 576px) {
    .memo-modal-dialog {
        margin: 0;
        max-width: none;
        width: 100%;
        height: 100%;
    }

    .memo-modal-content {
        height: 100%;
        max-height: none;
        border-radius: 0;
    }
}

.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.loading-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Load Tags */
.load-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    padding: 0 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    margin-left: 8px;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.blink-animation {
    animation: blinker 1s linear infinite;
    color: #ef4444 !important;
}

/* Hide Google Maps InfoWindow Close Button */
.gm-ui-hover-effect {
    display: none !important;
}

/* Attendance Styles */
.attendance-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 0 auto;
    width: 100%;
    max-width: 280px;
}

.attendance-btn {
    aspect-ratio: 1;
    border: none;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.attendance-btn:disabled {
    filter: grayscale(100%);
    opacity: 0.2;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.attendance-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.attendance-btn:hover::before {
    opacity: 1;
}

.attendance-btn:active {
    transform: scale(0.95);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.attendance-btn i {
    font-size: 24px;
}

.checkin-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.checkout-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.lunch-start-btn {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.lunch-end-btn {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
}

.time-display {
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.elapsed-time {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #e5e7eb;
    font-size: 14px;
    color: #6b7280;
    text-align: center;
    font-weight: 500;
}

.elapsed-time.active {
    color: #10b981;
    font-weight: 600;
    animation: pulse 2s ease-in-out infinite;
}

/* Load Number Select - Disabled State */
#load-no-select:disabled {
    background-color: #f3f4f6;
    color: #9ca3af;
    cursor: not-allowed;
    opacity: 0.6;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

/* ===== Attendance Grid (One Button Layout) ===== */
.attendance-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 0 auto;
    gap: 12px;
    margin-bottom: 20px;
}

.attendance-btn {
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
    cursor: pointer;
}

.lunch-start-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.3);
}

.lunch-start-btn:active {
    transform: scale(0.98);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.lunch-end-btn {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(245, 158, 11, 0.3);
}

.lunch-end-btn:active {
    transform: scale(0.98);
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
}

.attendance-btn i {
    font-size: 28px;
}