/* assets/css/style.css */
/* Premium stylesheet for A - 1 Laundry Service CRM */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #2563eb;
    --primary-light: #eff6ff;
    --primary-dark: #1d4ed8;
    --secondary: #10b981;
    --secondary-light: #ecfdf5;
    --secondary-dark: #047857;
    --success: #10b981;
    --success-light: #ecfdf5;
    --warning: #f59e0b;
    --warning-light: #fffbeb;
    --danger: #ef4444;
    --danger-light: #fef2f2;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --grey-50: #f8fafc;
    --grey-100: #f1f5f9;
    --grey-200: #e2e8f0;
    --grey-300: #cbd5e1;
    --grey-500: #64748b;
    --grey-700: #334155;
    --sidebar-width: 260px;
    --transition-speed: 0.3s;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--grey-100);
    color: var(--dark);
    min-height: 100vh;
    display: flex;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

/* ==========================================================================
   LAYOUT CONTAINERS
   ========================================================================== */
.app-container {
    display: flex;
    width: 100vw;
    min-height: 100vh;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    margin-left: var(--sidebar-width);
    transition: margin var(--transition-speed) ease;
}

.page-content {
    padding: 24px;
    flex: 1;
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
}

/* ==========================================================================
   SIDEBAR COMPONENT
   ========================================================================== */
.sidebar {
    width: var(--sidebar-width);
    background-color: var(--dark);
    color: white;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    z-index: 100;
    transition: transform var(--transition-speed) ease;
    box-shadow: var(--shadow-lg);
}

.sidebar-header {
    padding: 24px;
    border-bottom: 1px solid var(--dark-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
}

.brand-icon {
    font-size: 24px;
    color: var(--primary);
}

.brand-name {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.brand-sub {
    font-size: 10px;
    color: var(--grey-500);
    display: block;
}

.sidebar-menu {
    flex: 1;
    padding: 16px 12px;
    list-style: none;
    overflow-y: auto;
}

.menu-label {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--grey-500);
    padding: 12px 16px 8px;
    letter-spacing: 1px;
    font-weight: 700;
}

.menu-item {
    margin-bottom: 4px;
}

.menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--grey-300);
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.menu-link i {
    width: 20px;
    text-align: center;
    font-size: 16px;
    color: var(--grey-500);
    transition: color 0.2s ease;
}

.menu-link:hover {
    background-color: var(--dark-light);
    color: white;
}

.menu-link:hover i {
    color: var(--primary);
}

.menu-link.active {
    background-color: var(--primary);
    color: white;
}

.menu-link.active i {
    color: white;
}

.sidebar-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--dark-light);
    background-color: rgba(0,0,0,0.1);
}

.user-profile-widget {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.user-info {
    flex: 1;
    min-width: 0;
}

.user-name {
    font-size: 13px;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-role {
    font-size: 11px;
    color: var(--grey-500);
    text-transform: capitalize;
}

.logout-btn {
    color: var(--grey-500);
    text-decoration: none;
    transition: color 0.2s ease;
}

.logout-btn:hover {
    color: var(--danger);
}

/* ==========================================================================
   TOP HEADER COMPONENT
   ========================================================================== */
.top-header {
    background-color: white;
    height: 70px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 90;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sidebar-toggle-btn {
    background: none;
    border: none;
    color: var(--grey-700);
    font-size: 20px;
    cursor: pointer;
    display: none;
}

.breadcrumb-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
}

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

.current-time {
    font-size: 13px;
    color: var(--grey-500);
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-action-btn {
    background-color: var(--grey-50);
    border: 1px solid var(--grey-200);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey-700);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.header-action-btn:hover {
    background-color: var(--grey-100);
    color: var(--primary);
}

/* ==========================================================================
   ALERTS / FLASH ALERTS
   ========================================================================== */
.alert {
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
    animation: slideDown 0.3s ease;
}

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

.alert-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-icon {
    font-size: 18px;
}

.alert-text {
    font-size: 14px;
    font-weight: 500;
}

.alert-close-btn {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 16px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.alert-close-btn:hover {
    opacity: 1;
}

.alert-success {
    background-color: var(--success-light);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--secondary-dark);
}

.alert-warning {
    background-color: var(--warning-light);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: #9a3412;
}

.alert-danger {
    background-color: var(--danger-light);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #991b1b;
}

/* ==========================================================================
   CARDS & STATS
   ========================================================================== */
.card {
    background-color: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--grey-200);
    margin-bottom: 24px;
}

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

.card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.kpi-card {
    background-color: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--grey-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    color: inherit;
}

.kpi-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.kpi-info {
    display: flex;
    flex-direction: column;
}

.kpi-label {
    font-size: 13px;
    color: var(--grey-500);
    font-weight: 500;
    margin-bottom: 4px;
}

.kpi-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

.kpi-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* Icon Palette Variations */
.kpi-primary { background-color: var(--primary-light); color: var(--primary); }
.kpi-success { background-color: var(--secondary-light); color: var(--secondary); }
.kpi-warning { background-color: var(--warning-light); color: var(--warning); }
.kpi-danger { background-color: var(--danger-light); color: var(--danger); }
.kpi-purple { background-color: #f5f3ff; color: #7c3aed; }
.kpi-pink { background-color: #fdf2f8; color: #db2777; }
.kpi-teal { background-color: #f0fdfa; color: #0d9488; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 6px;
}

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

.btn-secondary { background-color: var(--grey-200); color: var(--grey-700); }
.btn-secondary:hover { background-color: var(--grey-300); }

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

.btn-danger { background-color: var(--danger); color: white; }
.btn-danger:hover { background-color: #b91c1c; }

.btn-warning { background-color: var(--warning); color: white; }
.btn-warning:hover { background-color: #d97706; }

.btn-outline-primary {
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}
.btn-outline-primary:hover {
    background-color: var(--primary-light);
}

.btn-outline-secondary {
    background-color: transparent;
    border: 1px solid var(--grey-300);
    color: var(--grey-700);
}
.btn-outline-secondary:hover {
    background-color: var(--grey-50);
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
}
.btn-whatsapp:hover {
    background-color: #1ebd56;
}

/* ==========================================================================
   TABLES & PAGINATION
   ========================================================================== */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    border: 1px solid var(--grey-200);
    border-radius: 8px;
}

.table-custom {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    background-color: white;
}

.table-custom th {
    background-color: var(--grey-50);
    color: var(--grey-700);
    font-weight: 600;
    font-size: 13px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--grey-200);
}

.table-custom td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--grey-200);
    font-size: 14px;
    color: var(--grey-700);
    vertical-align: middle;
}

.table-custom tr:last-child td {
    border-bottom: none;
}

.table-custom tr:hover td {
    background-color: var(--grey-50);
}

/* Status Badges */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: capitalize;
}

/* Order status badges */
.badge-new { background-color: var(--primary-light); color: var(--primary); }
.badge-pickup-scheduled { background-color: #f5f3ff; color: #7c3aed; }
.badge-picked-up { background-color: #fff7ed; color: #ea580c; }
.badge-received-at-shop { background-color: #ecfeff; color: #0891b2; }
.badge-washing { background-color: #e0f2fe; color: #0284c7; }
.badge-drying { background-color: #f0fdf4; color: #16a34a; }
.badge-ironing { background-color: #faf5ff; color: #9333ea; }
.badge-ready-for-delivery { background-color: #fef08a; color: #854d0e; }
.badge-out-for-delivery { background-color: #fdf2f8; color: #db2777; }
.badge-delivered { background-color: var(--secondary-light); color: var(--secondary-dark); }
.badge-cancelled { background-color: var(--danger-light); color: var(--danger); }

/* Payment status badges */
.badge-paid { background-color: var(--secondary-light); color: var(--secondary-dark); }
.badge-partial { background-color: var(--warning-light); color: #d97706; }
.badge-unpaid { background-color: var(--danger-light); color: var(--danger); }

/* Subscription status badges */
.badge-active { background-color: var(--secondary-light); color: var(--secondary-dark); }
.badge-expired { background-color: var(--grey-200); color: var(--grey-700); }
.badge-completed { background-color: #eff6ff; color: #1e40af; }
.badge-cancelled-sub { background-color: var(--danger-light); color: var(--danger); }

/* Table Action Buttons */
.table-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    color: var(--grey-500);
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid var(--grey-200);
}

.table-action:hover {
    color: var(--primary);
    background-color: var(--primary-light);
    border-color: rgba(37, 99, 235, 0.2);
}

.table-action-delete:hover {
    color: var(--danger);
    background-color: var(--danger-light);
    border-color: rgba(239, 68, 68, 0.2);
}

/* Pagination container */
.pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.pagination-info {
    font-size: 13px;
    color: var(--grey-500);
}

.pagination-links {
    display: flex;
    gap: 6px;
}

.pagination-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 6px;
    border-radius: 6px;
    border: 1px solid var(--grey-200);
    background-color: white;
    color: var(--grey-700);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.pagination-link:hover {
    background-color: var(--grey-50);
    color: var(--primary);
}

.pagination-link.active {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.pagination-link.disabled {
    background-color: var(--grey-50);
    color: var(--grey-300);
    cursor: not-allowed;
    pointer-events: none;
}

/* ==========================================================================
   FORMS
   ========================================================================== */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

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

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--grey-700);
}

.form-label span {
    color: var(--danger);
}

.form-control {
    padding: 10px 14px;
    border: 1px solid var(--grey-300);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--dark);
    background-color: white;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

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

.form-control::placeholder {
    color: var(--grey-300);
}

textarea.form-control {
    min-height: 80px;
    resize: vertical;
}

.form-help {
    font-size: 11px;
    color: var(--grey-500);
}

/* Form Action Buttons Wrapper */
.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
    border-top: 1px solid var(--grey-200);
    padding-top: 20px;
}

/* Search and Filters Bar */
.filters-bar {
    background-color: var(--grey-50);
    padding: 16px;
    border-radius: 8px;
    border: 1px solid var(--grey-200);
    margin-bottom: 20px;
}

.filters-form {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-end;
}

.filter-item {
    flex: 1;
    min-width: 160px;
}

.filter-item-search {
    flex: 2;
    min-width: 240px;
}

.filter-item-btn {
    flex: 0;
    min-width: auto;
}

/* ==========================================================================
   PAGE SPECIFIC LAYOUTS
   ========================================================================== */
.split-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    align-items: start;
}

/* Order timeline */
.timeline {
    position: relative;
    padding-left: 24px;
    margin-top: 16px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background-color: var(--grey-200);
}

.timeline-item {
    position: relative;
    padding-bottom: 20px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -24px;
    top: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--grey-300);
    border: 2px solid white;
    box-shadow: 0 0 0 2px var(--grey-200);
}

.timeline-item.active .timeline-marker {
    background-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

.timeline-info {
    display: flex;
    flex-direction: column;
}

.timeline-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.timeline-time {
    font-size: 11px;
    color: var(--grey-500);
    margin-bottom: 4px;
}

.timeline-desc {
    font-size: 12px;
    color: var(--grey-700);
}

/* Customer Profile Info */
.profile-meta-list {
    list-style: none;
}

.profile-meta-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--grey-100);
    font-size: 14px;
}

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

.profile-meta-label {
    color: var(--grey-500);
    font-weight: 500;
}

.profile-meta-value {
    font-weight: 600;
    color: var(--dark);
    text-align: right;
    max-width: 70%;
}

/* Upload image preview cards */
.photo-upload-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 12px;
}

.photo-preview-card {
    border: 1px dashed var(--grey-300);
    border-radius: 8px;
    padding: 8px;
    text-align: center;
    background-color: var(--grey-50);
}

.photo-preview-image {
    max-width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    background-color: var(--grey-200);
    display: block;
    margin: 0 auto 8px;
}

/* Business Settings Config */
.settings-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
}

.settings-nav {
    list-style: none;
    border-right: 1px solid var(--grey-200);
    padding-right: 15px;
}

.settings-nav-link {
    display: block;
    padding: 10px 14px;
    border-radius: 6px;
    color: var(--grey-700);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    transition: all 0.2s ease;
}

.settings-nav-link:hover {
    background-color: var(--grey-100);
}

.settings-nav-link.active {
    background-color: var(--primary-light);
    color: var(--primary);
    font-weight: 600;
}

/* Report Summaries CSS Chart Widgets */
.bar-chart-css {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.bar-chart-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
}

.bar-chart-label {
    width: 120px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bar-chart-track {
    flex: 1;
    height: 16px;
    background-color: var(--grey-200);
    border-radius: 8px;
    overflow: hidden;
}

.bar-chart-fill {
    height: 100%;
    background-color: var(--primary);
    border-radius: 8px;
    transition: width 0.5s ease;
}

.bar-chart-value {
    width: 80px;
    font-weight: 600;
    text-align: right;
}

/* ==========================================================================
   LOGIN PAGE COMPONENT
   ========================================================================== */
.login-body {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100vw;
}

.login-card {
    background-color: white;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 440px;
    padding: 40px;
    margin: 20px;
}

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

.login-logo i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 12px;
}

.login-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.login-subtitle {
    font-size: 13px;
    color: var(--grey-500);
}

/* ==========================================================================
   MOBILE RESPONSIVENESS
   ========================================================================== */
@media (max-width: 991px) {
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar.open {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .sidebar-toggle-btn {
        display: block;
    }
    
    .split-layout {
        grid-template-columns: 1fr;
    }
    
    .settings-grid {
        grid-template-columns: 1fr;
    }
    
    .settings-nav {
        border-right: none;
        border-bottom: 1px solid var(--grey-200);
        padding-right: 0;
        padding-bottom: 15px;
        display: flex;
        overflow-x: auto;
        gap: 8px;
    }
    
    .settings-nav-link {
        margin-bottom: 0;
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .filters-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-item, .filter-item-search {
        width: 100%;
    }
    
    .pagination-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ==========================================================================
   INVOICE / PRINT STYLING
   ========================================================================== */
@media print {
    body {
        background-color: white;
        color: black;
        font-size: 12px;
    }
    
    .sidebar, .top-header, .btn, .filters-bar, .pagination-container, .alert, .form-actions, .card-header button {
        display: none !important;
    }
    
    .main-content {
        margin-left: 0 !important;
    }
    
    .page-content {
        padding: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .card {
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin-bottom: 0 !important;
    }
    
    /* Printable invoice formatting */
    .invoice-print-container {
        font-family: 'Outfit', sans-serif;
        color: #000;
        padding: 20px;
    }
    
    .invoice-print-header {
        display: flex;
        justify-content: space-between;
        border-bottom: 2px solid #000;
        padding-bottom: 15px;
        margin-bottom: 20px;
    }
    
    .invoice-print-logo {
        font-size: 22px;
        font-weight: 700;
    }
    
    .invoice-print-details {
        display: flex;
        justify-content: space-between;
        margin-bottom: 25px;
        gap: 40px;
    }
    
    .invoice-print-table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 25px;
    }
    
    .invoice-print-table th {
        border-bottom: 1px solid #000;
        padding: 8px;
        font-weight: bold;
        text-align: left;
    }
    
    .invoice-print-table td {
        border-bottom: 1px solid #ddd;
        padding: 8px;
        text-align: left;
    }
    
    .invoice-print-summary {
        margin-left: auto;
        width: 250px;
        border-collapse: collapse;
    }
    
    .invoice-print-summary td {
        padding: 5px 8px;
    }
    
    .invoice-print-footer {
        text-align: center;
        margin-top: 40px;
        border-top: 1px dashed #000;
        padding-top: 15px;
        font-size: 11px;
    }
}
