/* ===== ADMIN DASHBOARD STYLES ===== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    min-height: 100vh;
}

/* ===== LOGIN SCREEN ===== */

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.login-box {
    background: #0f3460;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    max-width: 400px;
    width: 100%;
    animation: fadeIn 0.5s ease;
    border: 1px solid #1a4d7a;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h1 {
    color: #4fc3f7;
    font-size: 28px;
    margin-bottom: 10px;
}

.login-header p {
    color: #a0b9d1;
    font-size: 14px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #e0e0e0;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #1a4d7a;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #16213e;
    color: #e0e0e0;
}

.form-group input:focus {
    outline: none;
    border-color: #4fc3f7;
    box-shadow: 0 0 0 3px rgba(79, 195, 247, 0.2);
}

.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #1a4d7a;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #16213e;
    color: #e0e0e0;
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: #4fc3f7;
    box-shadow: 0 0 0 3px rgba(79, 195, 247, 0.2);
}

/* Ensure option elements also have proper contrast */
.form-group select option {
    background: #16213e;
    color: #e0e0e0;
}

/* Placeholder text styling for better visibility */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #8899aa;
    opacity: 1;
}

.form-group input::-webkit-input-placeholder,
.form-group textarea::-webkit-input-placeholder {
    color: #8899aa;
}

.form-group input::-moz-placeholder,
.form-group textarea::-moz-placeholder {
    color: #8899aa;
    opacity: 1;
}

.login-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #4fc3f7 0%, #2196f3 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 195, 247, 0.5);
}

.error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 10px;
    text-align: center;
    display: none;
}

.error-message.show {
    display: block;
}

/* ===== DASHBOARD LAYOUT ===== */

.dashboard-container {
    min-height: 100vh;
    background: #0f1419;
}

/* ===== HEADER ===== */

.admin-header {
    background: #16213e;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #1a4d7a;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-header h1 {
    color: #4fc3f7;
    font-size: 24px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.admin-user {
    color: #a0b9d1;
    font-weight: 600;
}

.logout-btn {
    padding: 10px 20px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

/* ===== NAVIGATION TABS ===== */

.admin-nav {
    background: #16213e;
    border-bottom: 2px solid #1a4d7a;
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    overflow-x: auto;
}

.nav-tab {
    padding: 15px 25px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #a0b9d1;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-tab:hover {
    color: #4fc3f7;
    background: #0f3460;
}

.nav-tab.active {
    color: #4fc3f7;
    border-bottom-color: #4fc3f7;
}

/* ===== MAIN CONTENT ===== */

.admin-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.section-header {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.section-header h2 {
    color: #e0e0e0;
    font-size: 26px;
}

.section-description {
    color: #a0b9d1;
    font-size: 14px;
    margin-top: 8px;
}

.filter-controls {
    display: flex;
    gap: 10px;
    align-items: center;
}

.filter-controls select {
    padding: 10px 15px;
    border: 2px solid #1a4d7a;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    background: #16213e;
    color: #e0e0e0;
}

.refresh-btn {
    padding: 10px 20px;
    background: #4fc3f7;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.refresh-btn:hover {
    background: #2196f3;
    transform: translateY(-2px);
}

/* ===== CONTENT SECTIONS ===== */

.content-section {
    background: #16213e;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid #1a4d7a;
}

.content-section h3 {
    color: #e0e0e0;
    font-size: 20px;
    margin-bottom: 15px;
}

.help-text {
    color: #a0b9d1;
    font-size: 14px;
    margin-bottom: 20px;
}

/* ===== UPLOAD AREAS ===== */

.upload-area {
    position: relative;
    margin-bottom: 20px;
}

.upload-area input[type="file"] {
    display: none;
}

.upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border: 3px dashed #d0d0d0;
    border-radius: 15px;
    background: #f9f9f9;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-label:hover {
    border-color: #667eea;
    background: #f0f4ff;
}

.upload-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.upload-label div {
    color: #b0b0b0;
    font-size: 16px;
    font-weight: 600;
}

.upload-hint {
    color: #999 !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    margin-top: 8px;
}

/* ===== GALLERY PREVIEW ===== */

.gallery-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.delete-photo {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(231, 76, 60, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.delete-photo:hover {
    background: #e74c3c;
    transform: scale(1.1);
}

/* ===== VIDEO UPLOAD ===== */

.video-upload-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.upload-option h4 {
    color: #e0e0e0;
    margin-bottom: 15px;
}

.url-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 10px;
}

.url-input:focus {
    outline: none;
    border-color: #667eea;
}

.video-preview {
    margin-top: 20px;
}

.video-preview iframe,
.video-preview video {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ===== FORM ELEMENTS ===== */

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #1a4d7a;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    background: #16213e;
    color: #e0e0e0;
}

.form-group textarea:focus {
    outline: none;
    border-color: #4fc3f7;
    box-shadow: 0 0 0 3px rgba(79, 195, 247, 0.2);
}

/* ===== BUTTONS ===== */

.save-btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.save-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.export-btn {
    padding: 12px 30px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.export-btn:hover {
    background: #229954;
    transform: translateY(-2px);
}

.warning-btn {
    padding: 12px 30px;
    background: #e67e22;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.warning-btn:hover {
    background: #d35400;
    transform: translateY(-2px);
}

/* ===== REQUESTS GRID ===== */

.requests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.request-card {
    background: #16213e;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #1a4d7a;
}

.request-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(79, 195, 247, 0.2);
    border-color: #4fc3f7;
}

.request-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 15px;
}

.request-id {
    font-size: 18px;
    font-weight: 700;
    color: #4fc3f7;
}

.request-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-received {
    background: #e8f4fd;
    color: #3498db;
}

.status-scheduled {
    background: #fef5e7;
    color: #f39c12;
}

.status-on-the-way {
    background: #ebf5fb;
    color: #3498db;
}

.status-in-progress {
    background: #fef9e7;
    color: #f1c40f;
}

.status-completed {
    background: #eafaf1;
    color: #27ae60;
}

.request-info p {
    color: #a0b9d1;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.request-info strong {
    color: #e0e0e0;
}

.request-actions {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #1a4d7a;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.action-btn {
    padding: 8px 16px;
    background: #4fc3f7;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: #2196f3;
}

.action-btn.secondary {
    background: #95a5a6;
}

.action-btn.secondary:hover {
    background: #7f8c8d;
}

/* ===== BEFORE/AFTER PHOTOS ===== */

.photo-upload-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.upload-column h4 {
    color: #e0e0e0;
    margin-bottom: 15px;
}

.photo-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.photo-preview-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.photo-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== COMPLETED JOBS ===== */

.completed-jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 20px;
}

.job-card {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 20px;
    border: 2px solid #e0e0e0;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.job-id {
    font-size: 16px;
    font-weight: 700;
    color: #667eea;
}

.job-date {
    color: #999;
    font-size: 13px;
}

.job-photos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 15px 0;
}

.photo-group h5 {
    color: #b0b0b0;
    font-size: 13px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.photo-group img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.job-report {
    background: white;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}

.job-report p {
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.6;
}

.airflow-data {
    display: flex;
    justify-content: space-around;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.airflow-item {
    text-align: center;
}

.airflow-label {
    color: #999;
    font-size: 12px;
    text-transform: uppercase;
}

.airflow-value {
    color: #667eea;
    font-size: 24px;
    font-weight: 700;
    margin-top: 5px;
}

/* ===== MODAL ===== */

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: #16213e;
    margin: 50px auto;
    padding: 40px;
    border-radius: 20px;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
    border: 1px solid #1a4d7a;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close:hover {
    color: #e74c3c;
}

/* ===== ANIMATIONS ===== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 768px) {
    .admin-main {
        padding: 20px 15px;
    }

    .header-content {
        padding: 15px 20px;
    }

    .admin-header h1 {
        font-size: 20px;
    }

    .admin-nav {
        padding: 0 15px;
    }

    .nav-tab {
        padding: 12px 15px;
        font-size: 14px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .requests-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .video-upload-options {
        grid-template-columns: 1fr;
    }

    .photo-upload-grid {
        grid-template-columns: 1fr;
    }

    .completed-jobs-grid {
        grid-template-columns: 1fr;
    }

    .gallery-preview {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 480px) {
    .login-box {
        padding: 30px 20px;
    }

    .content-section {
        padding: 20px;
    }

    .modal-content {
        margin: 20px;
        padding: 25px;
    }

    .gallery-preview {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}

/* ===== EMPTY STATES ===== */

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.empty-state-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state h3 {
    color: #b0b0b0;
    font-size: 20px;
    margin-bottom: 10px;
}

.empty-state p {
    color: #999;
    font-size: 14px;
}

/* ===== SCHEDULING & APPOINTMENTS ===== */

.appointments-list,
.appointments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.appointment-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.appointment-card:hover {
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.apt-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.apt-date {
    font-weight: 700;
    color: #667eea;
    font-size: 14px;
}

.apt-status {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.apt-status.status-scheduled {
    background: #e3f2fd;
    color: #1976d2;
}

.apt-status.status-cancelled {
    background: #ffebee;
    color: #c62828;
}

.apt-status.status-completed {
    background: #e8f5e9;
    color: #2e7d32;
}

.apt-time {
    font-size: 20px;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.apt-details p {
    color: #b0b0b0;
    margin: 8px 0;
    font-size: 14px;
}

.apt-details strong {
    color: #e0e0e0;
}

.apt-actions {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Working Hours Config */
.working-hours-config {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.day-config {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
}

.day-config label {
    min-width: 120px;
    font-weight: 600;
    color: #e0e0e0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.day-config input[type="checkbox"] {
    cursor: pointer;
}

.day-config input[type="time"] {
    padding: 8px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
}

.day-config input[type="time"]:focus {
    outline: none;
    border-color: #667eea;
}

.day-config span {
    color: #999;
    font-weight: 500;
}

/* Service Areas List */
.service-areas-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.service-area-card {
    background: #f9f9f9;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
}

.service-area-card h4 {
    color: #667eea;
    margin-bottom: 12px;
    font-size: 16px;
}

.service-area-card p {
    color: #b0b0b0;
    margin: 8px 0;
    font-size: 14px;
}

.service-area-card button {
    margin-top: 10px;
    margin-right: 8px;
}

/* Price Summary in Request Cards */
.price-summary {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f5e9 100%);
    border-left: 4px solid #667eea;
    padding: 12px;
    border-radius: 8px;
    margin-top: 15px;
}

.price-summary p {
    margin: 5px 0;
}

.price-breakdown-small {
    font-size: 0.85rem;
    color: #b0b0b0;
    font-style: italic;
}

/* ===== PRODUCTS MANAGEMENT ===== */

.products-admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.product-admin-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 15px;
    transition: all 0.3s ease;
}

.product-admin-card:hover {
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.product-admin-icon {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-admin-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-admin-details h4 {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin: 0;
}

.product-admin-desc {
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.product-admin-price {
    color: #667eea;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 5px 0 0 0;
}

.badge-small {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 5px;
}

.badge-small.default {
    background: #667eea;
    color: white;
}

.badge-small.recommended {
    background: #4caf50;
    color: white;
}

.badge-small.premium {
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    color: #e0e0e0;
}

.product-admin-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}

.section-actions {
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-end;
}

/* ===== ROUTE OPTIMIZER ===== */

.date-selection-row {
    display: flex;
    gap: 15px;
    align-items: center;
}

.date-input-large {
    flex: 1;
    max-width: 300px;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
}

.date-input-large:focus {
    outline: none;
    border-color: #667eea;
}

.jobs-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.job-selection-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.job-selection-card:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.job-selection-card.selected {
    border-color: #4caf50;
    background: #e8f5e9;
}

.job-selection-card h4 {
    color: #e0e0e0;
    margin: 0 0 10px 0;
}

.job-selection-card p {
    color: #b0b0b0;
    margin: 5px 0;
    font-size: 0.9rem;
}

.optimize-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.optimize-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.route-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.summary-card {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.summary-card:hover {
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.15);
}

.summary-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: white;
}

.summary-content h4 {
    margin: 0 0 8px 0;
    color: #b0b0b0;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.summary-content p {
    margin: 0;
    color: #e0e0e0;
    font-size: 1.8rem;
    font-weight: 700;
}

.optimized-route-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.route-step {
    background: white;
    border: 2px solid #e0e0e0;
    border-left: 6px solid #667eea;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.route-step:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.route-step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.route-step-details {
    flex: 1;
}

.route-step-details h4 {
    margin: 0 0 10px 0;
    color: #e0e0e0;
    font-size: 1.1rem;
}

.route-step-details p {
    margin: 5px 0;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.route-step-stats {
    display: flex;
    gap: 20px;
    padding: 10px 0;
}

.route-stat {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #667eea;
    font-weight: 600;
}

.route-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
}

.export-btn {
    padding: 12px 30px;
    background: white;
    border: 2px solid #667eea;
    color: #667eea;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.export-btn:hover {
    background: #667eea;
    color: white;
}

/* ===== GOOGLE MAPS API SETTINGS ===== */

.help-text-small {
    font-size: 0.85rem;
    color: #999;
    margin-top: 5px;
}

.help-text-small a {
    color: #667eea;
    text-decoration: none;
}

.help-text-small a:hover {
    text-decoration: underline;
}

.button-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.api-status {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-message {
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
    color: #2e7d32;
    padding: 15px;
    border-radius: 4px;
}

.error-message {
    background: #ffebee;
    border-left: 4px solid #f44336;
    color: #c62828;
    padding: 15px;
    border-radius: 4px;
}

.loading-message {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
    color: #1565c0;
    padding: 15px;
    border-radius: 4px;
}

.info-box {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f5ff 100%);
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.info-box h4 {
    color: #667eea;
    margin: 0 0 15px 0;
    font-size: 1.1rem;
}

.info-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-box ul li {
    padding: 8px 0;
    color: #b0b0b0;
    position: relative;
    padding-left: 25px;
}

.info-box ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

/* ===== ADA CHATBOT QUOTE STYLES ===== */

.ada-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ada-quote-card {
    border-left: 4px solid #f093fb !important;
    background: linear-gradient(to right, rgba(240, 147, 251, 0.05), white) !important;
}

.ada-pricing {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.1), rgba(245, 87, 108, 0.1));
    border-left: 3px solid #f093fb;
    padding: 10px;
    border-radius: 8px;
    margin-top: 10px;
}

.price-note {
    color: #e74c3c;
    font-size: 12px;
    font-weight: 600;
    margin-top: 5px;
}

.ada-call-btn {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%) !important;
    color: white !important;
    font-weight: 600;
}

.ada-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(240, 147, 251, 0.4);
}

.status-on-hold {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
}

/* ===== SERVICE REPORT STYLES ===== */

.report-subsection {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.report-subsection h4 {
    color: #1e293b;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #cbd5e1;
}

.report-subsection .field-hint {
    color: #64748b;
    font-size: 11px;
    font-style: italic;
    display: block;
    margin-top: 4px;
}

.section-description {
    color: #64748b;
    font-size: 14px;
    margin: -5px 0 20px 0;
    font-style: italic;
}

/* ===== REPORT SECTION ===== */

.report-section {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    border: 2px solid #e2e8f0;
}

.report-section h3 {
    color: #1e293b;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

/* ===== ROUTE OPTIMIZER MAP STYLES ===== */

.map-section {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    border: 2px solid #e2e8f0;
}

.map-section h3 {
    color: #1e293b;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.route-map-container {
    width: 100%;
    height: 600px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #cbd5e1;
    margin: 20px 0;
    background: #f1f5f9;
}

.map-controls {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 15px;
}

.map-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.map-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.map-btn:active {
    transform: translateY(0);
}

/* ===== ADMIN ADA CHATBOT ===== */

/* Floating Button */
.admin-ada-toggle-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4fc3f7 0%, #2196f3 100%);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(79, 195, 247, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.admin-ada-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(79, 195, 247, 0.6);
}

.admin-ada-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

/* Chat Window */
.admin-ada-chat-window {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 450px;
    height: 600px;
    background: #16213e;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    border: 2px solid #1a4d7a;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header */
.admin-ada-header {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    padding: 20px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #1a4d7a;
}

.admin-ada-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-ada-avatar {
    font-size: 32px;
}

.admin-ada-header-info h3 {
    color: #4fc3f7;
    font-size: 18px;
    margin: 0;
}

.admin-ada-header-info p {
    color: #4caf50;
    font-size: 12px;
    margin: 4px 0 0 0;
    font-weight: 600;
}

.admin-ada-header-actions {
    display: flex;
    gap: 10px;
}

.admin-ada-action-btn {
    background: transparent;
    border: none;
    color: #a0b9d1;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: all 0.2s ease;
}

.admin-ada-action-btn:hover {
    background: #1a4d7a;
    color: #4fc3f7;
}

/* Messages Area */
.admin-ada-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #0f1419;
}

.admin-ada-message {
    margin-bottom: 16px;
    animation: fadeIn 0.3s ease;
}

.admin-ada-message.user {
    text-align: right;
}

.admin-ada-message-content {
    display: inline-block;
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.admin-ada-message.user .admin-ada-message-content {
    background: linear-gradient(135deg, #4fc3f7 0%, #2196f3 100%);
    color: white;
    border-radius: 12px 12px 0 12px;
}

.admin-ada-message.assistant .admin-ada-message-content {
    background: #16213e;
    color: #e0e0e0;
    border: 1px solid #1a4d7a;
    border-radius: 12px 12px 12px 0;
    text-align: left;
}

.admin-ada-message.assistant .admin-ada-message-content strong {
    color: #4fc3f7;
}

.admin-ada-message.assistant .admin-ada-message-content ul,
.admin-ada-message.assistant .admin-ada-message-content ol {
    margin: 8px 0;
    padding-left: 20px;
}

.admin-ada-message.assistant .admin-ada-message-content li {
    margin: 4px 0;
    color: #a0b9d1;
}

.admin-ada-typing {
    display: inline-block;
    padding: 12px 16px;
    background: #16213e;
    border: 1px solid #1a4d7a;
    border-radius: 12px 12px 12px 0;
    color: #a0b9d1;
}

.admin-ada-typing-dots {
    display: inline-flex;
    gap: 4px;
}

.admin-ada-typing-dot {
    width: 8px;
    height: 8px;
    background: #4fc3f7;
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out;
}

.admin-ada-typing-dot:nth-child(1) {
    animation-delay: -0.32s;
}

.admin-ada-typing-dot:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

/* Input Area */
.admin-ada-input-area {
    padding: 15px 20px;
    background: #16213e;
    border-top: 2px solid #1a4d7a;
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.admin-ada-input-area textarea {
    flex: 1;
    background: #0f1419;
    border: 2px solid #1a4d7a;
    border-radius: 12px;
    padding: 12px 16px;
    color: #e0e0e0;
    font-size: 14px;
    font-family: inherit;
    resize: none;
    max-height: 120px;
    transition: all 0.3s ease;
}

.admin-ada-input-area textarea:focus {
    outline: none;
    border-color: #4fc3f7;
    box-shadow: 0 0 0 3px rgba(79, 195, 247, 0.2);
}

.admin-ada-input-area textarea::placeholder {
    color: #64748b;
}

.admin-ada-send-btn {
    background: linear-gradient(135deg, #4fc3f7 0%, #2196f3 100%);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-ada-send-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 195, 247, 0.4);
}

.admin-ada-send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Quick Actions */
.admin-ada-quick-actions {
    padding: 15px 20px;
    background: #16213e;
    border-top: 1px solid #1a4d7a;
    border-radius: 0 0 20px 20px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.quick-action-btn {
    padding: 8px 14px;
    background: #0f3460;
    border: 1px solid #1a4d7a;
    border-radius: 20px;
    color: #a0b9d1;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-action-btn:hover {
    background: #1a4d7a;
    color: #4fc3f7;
    border-color: #4fc3f7;
}

/* Responsive */
@media (max-width: 768px) {
    .admin-ada-chat-window {
        width: calc(100% - 30px);
        right: 15px;
        bottom: 90px;
        height: calc(100vh - 120px);
    }

    .admin-ada-toggle-btn {
        right: 15px;
        bottom: 20px;
    }
}

/* ===== CUSTOMER REPORTS STYLES ===== */

.customer-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    background: #0a2744;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #1a4d7a;
}

.customer-info-grid div {
    color: #a0b9d1;
}

.customer-info-grid strong {
    color: #4fc3f7;
}

.machines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
}

.machine-card {
    background: #0a2744;
    border: 1px solid #1a4d7a;
    border-radius: 10px;
    padding: 15px;
}

.machine-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.machine-header strong {
    color: #4fc3f7;
}

.machine-type-badge {
    background: #4fc3f7;
    color: #0a2744;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.machine-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: #a0b9d1;
    font-size: 0.85rem;
}

.machine-notes {
    margin-top: 10px;
    color: #8899a8;
    font-size: 0.85rem;
    font-style: italic;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 15px;
}

.report-card {
    background: #0a2744;
    border: 1px solid #1a4d7a;
    border-radius: 10px;
    padding: 15px;
}

.report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.report-header strong {
    color: #4fc3f7;
}

.report-date {
    color: #8899a8;
    font-size: 0.85rem;
}

.report-type {
    color: #66bb6a;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.report-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    color: #a0b9d1;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.report-photos {
    display: flex;
    gap: 10px;
    margin: 10px 0;
}

.report-photos img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid #1a4d7a;
    transition: border-color 0.2s;
}

.report-photos img:hover {
    border-color: #4fc3f7;
}

.report-notes {
    color: #8899a8;
    font-size: 0.85rem;
    font-style: italic;
    margin: 8px 0;
}

.next-service {
    background: #1a4d7a;
    padding: 8px 12px;
    border-radius: 6px;
    color: #ffcc80;
    font-size: 0.85rem;
    margin-top: 10px;
}

.photo-preview {
    margin-top: 10px;
    min-height: 50px;
}

/* Range input styling */
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #1a4d7a;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4fc3f7;
    cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4fc3f7;
    cursor: pointer;
    border: none;
}

/* ===== INVENTORY SECTION STYLES ===== */

/* Inventory Summary Grid */
.inventory-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.summary-card {
    background: linear-gradient(135deg, #1a4d7a 0%, #0a2744 100%);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #2a5d8a;
}

.summary-icon {
    font-size: 2.5rem;
}

.summary-content {
    flex: 1;
}

.summary-label {
    font-size: 0.85rem;
    color: #8899aa;
    margin-bottom: 5px;
}

.summary-value {
    font-size: 1.8rem;
    font-weight: bold;
    color: #4fc3f7;
}

/* Category Totals */
.category-totals {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.category-summary-item {
    background: #0a2744;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #1a4d7a;
}

.category-name {
    font-weight: 600;
    color: #4fc3f7;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.category-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #8899aa;
}

.category-cost {
    color: #81c784;
    font-weight: 600;
}

/* Inventory Table */
.table-container {
    overflow-x: auto;
    border-radius: 10px;
    border: 1px solid #1a4d7a;
}

.inventory-table {
    width: 100%;
    border-collapse: collapse;
    background: #0a2744;
}

.inventory-table thead {
    background: #1a4d7a;
}

.inventory-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: #4fc3f7;
    border-bottom: 2px solid #2a5d8a;
}

.inventory-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #1a3a5a;
    color: #e8f4f8;
}

.inventory-table tbody tr:hover {
    background: #0d3454;
}

/* Category Badge */
.category-badge {
    display: inline-block;
    padding: 4px 10px;
    background: #1a4d7a;
    color: #4fc3f7;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* File Preview */
.file-preview {
    display: none;
    padding: 10px;
    background: #e8f5e9;
    border-radius: 5px;
    margin-top: 5px;
    font-size: 0.9rem;
}

/* Buttons */
.view-receipt-btn {
    background: #4fc3f7;
    color: #0a2744;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s;
}

.view-receipt-btn:hover {
    background: #29b6f6;
    transform: translateY(-1px);
}

.delete-btn-small {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.delete-btn-small:hover {
    background: #c0392b;
    transform: scale(1.05);
}

.refresh-btn {
    background: #66bb6a;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.refresh-btn:hover {
    background: #4caf50;
    transform: translateY(-1px);
}

.table-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .inventory-summary-grid {
        grid-template-columns: 1fr;
    }

    .category-totals {
        grid-template-columns: 1fr;
    }

    .table-container {
        overflow-x: scroll;
    }

    .inventory-table {
        min-width: 800px;
    }

    .table-actions {
        flex-direction: column;
    }

    .table-actions button {
        width: 100%;
    }
}
