/*body {
}*/
/* LaundryPro - Modern UI Styles */

/*:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #dbeafe;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --info-color: #3b82f6;
    --dark-color: #1f2937;
    --light-gray: #f9fafb;
    --border-color: #e5e7eb;
    --text-muted: #6b7280;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
}*/

/* Navbar Enhancements */
/*.navbar {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

    .nav-link:hover {
        color: var(--primary-color) !important;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: var(--primary-color);
        transition: width 0.3s ease;
    }

    .nav-link:hover::after {
        width: 80%;
    }*/

/* Card Styling */
/*.card {
    border: none;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

    .card:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

.card-body {
    padding: 1.5rem;
}*/

/* Dashboard Cards */
/*.dashboard-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border-left: 4px solid;
    transition: all 0.3s ease;
}

    .dashboard-card:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(-4px);
    }

    .dashboard-card.primary {
        border-left-color: var(--primary-color);
    }

    .dashboard-card.success {
        border-left-color: var(--success-color);
    }

    .dashboard-card.info {
        border-left-color: var(--info-color);
    }

    .dashboard-card .icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        margin-bottom: 1rem;
    }

    .dashboard-card.primary .icon {
        background: var(--primary-light);
        color: var(--primary-color);
    }

    .dashboard-card.success .icon {
        background: #d1fae5;
        color: var(--success-color);
    }

    .dashboard-card.info .icon {
        background: #dbeafe;
        color: var(--info-color);
    }*/

/* Tables */
/*.table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

    .table thead {
        background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    }

        .table thead th {
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.75rem;
            letter-spacing: 0.5px;
            color: var(--text-muted);
            border-bottom: 2px solid var(--border-color);
            padding: 1rem;
        }

    .table tbody tr {
        transition: background-color 0.2s ease;
    }

        .table tbody tr:hover {
            background-color: var(--light-gray);
        }

    .table tbody td {
        padding: 1rem;
        vertical-align: middle;
        border-bottom: 1px solid #f1f5f9;
    }*/

/* Buttons */
/*.btn {
    border-radius: 8px;
    font-weight: 500;
    padding: 0.625rem 1.25rem;
    transition: all 0.2s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
}

    .btn-primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
    }

.btn-success {
    background: linear-gradient(135deg, var(--success-color) 0%, #059669 100%);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

    .btn-outline-primary:hover {
        background: var(--primary-color);
        color: white;
    }

.btn-sm {
    padding: 0.375rem 0.875rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1.125rem;
}*/

/* Badges */
/*.badge {
    padding: 0.375rem 0.75rem;
    font-weight: 600;
    border-radius: 6px;
    font-size: 0.75rem;
    letter-spacing: 0.3px;
}*/

/* Forms */
/*.form-control, .form-select {
    border-radius: 8px;
    border: 1px solid var(--border-color);
    padding: 0.625rem 0.875rem;
    transition: all 0.2s ease;
}

    .form-control:focus, .form-select:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    }

.form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}*/

/* Page Headers */
/*.page-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

    .page-header h1, .page-header h2 {
        font-weight: 700;
        color: var(--dark-color);
        margin-bottom: 0.5rem;
    }

    .page-header p {
        color: var(--text-muted);
        font-size: 1rem;
    }*/

/* Jumbotron Alternative */
/*.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 3rem 2rem;
    color: white;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-lg);
}

    .hero-section h1 {
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .hero-section p {
        opacity: 0.9;
        font-size: 1.125rem;
    }*/

/* Status Indicators */
/*.status-pending {
    color: #f59e0b;
    background: #fef3c7;
}

.status-processing {
    color: #3b82f6;
    background: #dbeafe;
}

.status-completed {
    color: #10b981;
    background: #d1fae5;
}*/

/* Action Buttons Group */
/*.action-buttons {
    display: flex;
    gap: 0.5rem;
}

    .action-buttons .btn {
        padding: 0.5rem 0.75rem;
    }*/

/* Footer */
/*.footer {
    background: white;
    padding: 2rem 0;
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
}*/

/* Utility Classes */
/*.text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-custom {
    box-shadow: var(--shadow);
}

.shadow-custom-lg {
    box-shadow: var(--shadow-lg);
}*/

/* Animations */
/*@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.5s ease;
}*/

/* Responsive Adjustments */
/*@media (max-width: 768px) {
    .dashboard-card {
        margin-bottom: 1rem;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .hero-section {
        padding: 2rem 1.5rem;
    }
}*/

/* Print Styles */
/*@media print {
    body * {
        visibility: hidden;
    }

    #printableArea, #printableArea * {
        visibility: visible;
    }

    #printableArea {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }

    .no-print {
        display: none !important;
    }
}*/


:root {
    --sidebar-width: 260px;
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --sidebar-bg: #1f2937;
    --sidebar-text: #9ca3af;
    --sidebar-active: #3b82f6;
    --content-bg: #f9fafb;
    --border-color: #e5e7eb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--content-bg);
    color: #1f2937;
}

/* Sidebar Styles */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: var(--sidebar-bg);
    z-index: 1000;
    overflow-y: auto;
    transition: transform 0.3s ease;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
}

.sidebar-header {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-brand {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

    .sidebar-brand:hover {
        color: white;
        transform: translateX(2px);
    }

.brand-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(102, 126, 234, 0.3);
}

.sidebar-nav {
    padding: 1rem 0;
}

.nav-section {
    margin-bottom: 1.5rem;
}

.nav-section-title {
    color: var(--sidebar-text);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0 1rem;
    margin-bottom: 0.5rem;
}

.sidebar .nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--sidebar-text) !important;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.95rem;
    font-weight: 500;
    border-left: 3px solid transparent;
}

    .sidebar .nav-link:hover {
        background: rgba(59, 130, 246, 0.1);
        color: white !important;
        border-left-color: transparent;
    }

    .sidebar .nav-link.active {
        background: rgba(59, 130, 246, 0.15);
        color: white !important;
        border-left-color: var(--sidebar-active);
    }

    .sidebar .nav-link i {
        font-size: 1.1rem;
        width: 20px;
        text-align: center;
    }

    /* Admin Link Special Style */
    .sidebar .nav-link.admin-link {
        background: rgba(220, 53, 69, 0.1);
        border-left-color: #dc3545;
        color: #fca5a5 !important;
    }

        .sidebar .nav-link.admin-link:hover {
            background: rgba(220, 53, 69, 0.2);
            color: #fee2e2 !important;
        }

        .sidebar .nav-link.admin-link.active {
            background: rgba(220, 53, 69, 0.25);
            border-left-color: #dc3545;
        }

/* Main Content Area */
.main-wrapper {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.top-bar {
    background: white;
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #374151;
    cursor: pointer;
    padding: 0.25rem;
}

    .mobile-menu-toggle:hover {
        color: var(--primary-color);
    }

.page-breadcrumb {
    color: #6b7280;
    font-size: 0.9rem;
}

    .page-breadcrumb i {
        font-size: 0.875rem;
    }

.content-wrapper {
    flex: 1;
    padding: 2rem;
}

/* Card Styles */
.card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}

.card-header {
    background: white;
    border-bottom: 1px solid var(--border-color);
    padding: 1.25rem 1.5rem;
    font-weight: 600;
}

.card-body {
    padding: 1.5rem;
}

/* Table Styles */
.table {
    margin-bottom: 0;
}

    .table thead th {
        background: #f9fafb;
        border-bottom: 2px solid var(--border-color);
        color: #374151;
        font-weight: 600;
        font-size: 0.875rem;
        text-transform: uppercase;
        letter-spacing: 0.025em;
        padding: 0.75rem 1rem;
    }

    .table tbody td {
        padding: 1rem;
        vertical-align: middle;
        border-bottom: 1px solid var(--border-color);
    }

    .table tbody tr:hover {
        background: #f9fafb;
    }

    .table tbody tr:last-child td {
        border-bottom: none;
    }

/* Button Styles */
.btn {
    padding: 0.5rem 1rem;
    font-weight: 500;
    border-radius: 6px;
    border: none;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

    .btn-primary:hover {
        background: var(--primary-dark);
        transform: translateY(-1px);
        box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
    }

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

/* Page Header */
.page-header {
    margin-bottom: 2rem;
}

.page-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: #6b7280;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: white;
    padding: 2rem;
    margin-top: auto;
    border-top: 1px solid var(--border-color);
}

    .footer a {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 500;
        transition: all 0.2s ease;
    }

        .footer a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }

/* Mobile Responsive */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }

        .sidebar.active {
            transform: translateX(0);
        }

    .main-wrapper {
        margin-left: 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .content-wrapper {
        padding: 1rem;
    }

    .top-bar {
        padding: 1rem;
    }
}

/* Sidebar Overlay for Mobile */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

    .sidebar-overlay.active {
        display: block;
    }

@import url('e:\tailormanagementsystem\tailormanagementsystem\views\home\site.css');
/* Print Styles */
@media print {
    .sidebar,
    .top-bar,
    .footer,
    .no-print {
        display: none !important;
    }

    .main-wrapper {
        margin-left: 0;
    }

    .content-wrapper {
        padding: 0;
    }
}

/* Utility Classes */
.shadow-custom {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.animate-fade-in {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
