/* Pakistani Tailor Management System - Main Stylesheet */

:root {
    --primary-color: #2c5530;
    --secondary-color: #f4a261;
    --accent-color: #e76f51;
    --success-color: #2a9d8f;
    --warning-color: #f4a261;
    --danger-color: #e63946;
    --light-bg: #f8f9fa;
    --dark-text: #2d3436;
    --border-color: #ddd;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    background: #6c757d !important;
    border: 1px solid #6c757d !important;
    color: white !important;
    padding: 4px 8px !important;
    font-size: 0.8rem !important;
    border-radius: 4px !important;
    cursor: pointer !important;
}

.dropdown-toggle:hover {
    background: #5a6268 !important;
    border-color: #5a6268 !important;
}

.dropdown-menu {
    position: absolute;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-shadow: var(--shadow);
    min-width: 160px;
    z-index: 1000;
    padding: 4px 0;
    top: 100%;
    right: 0;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 8px 12px;
    text-decoration: none;
    color: var(--dark-text);
    background: none;
    border: none;
    text-align: left;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

.dropdown-button {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 0.9rem;
}

.dropdown-divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 4px 0;
}

.text-danger {
    color: var(--danger-color) !important;
}

/* Status Options Styling */
.status-option {
    border: 1px solid var(--border-color) !important;
    background: white !important;
    color: var(--dark-text) !important;
    transition: all 0.2s ease !important;
}

.status-option:hover {
    background: var(--light-bg) !important;
    border-color: var(--primary-color) !important;
}

/* Customer Measurements Form Styling */
.measurements-form-container {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 2rem;
}

.form-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.5rem;
}

.form-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.title-icon {
    font-size: 1.8rem;
}

.title-urdu {
    font-size: 1rem;
    opacity: 0.9;
    margin-left: 0.5rem;
}

.form-body {
    padding: 1.5rem;
}

.customer-info-bar {
    background: var(--light-bg);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.customer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.info-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.info-badge.primary {
    background: var(--primary-color);
    color: white;
}

.info-badge.secondary {
    background: var(--secondary-color);
    color: white;
}

.info-badge.warning {
    background: var(--warning-color);
    color: white;
}

.form-section {
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.section-header {
    background: var(--light-bg);
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.section-title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-icon {
    font-size: 1.3rem;
}

.section-urdu {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-left: 0.5rem;
}

.gender-section .gender-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    padding: 1.5rem;
}

.gender-option {
    position: relative;
    cursor: pointer;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    background: white;
}

.gender-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.gender-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.gender-option input[type="radio"]:checked + .option-content {
    color: var(--primary-color);
}

.gender-option input[type="radio"]:checked {
    & ~ .option-content {
        color: var(--primary-color);
    }
}

.gender-option:has(input:checked) {
    border-color: var(--primary-color);
    background: rgba(44, 85, 48, 0.05);
}

.option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.option-icon {
    font-size: 2rem;
}

.option-text {
    font-weight: 600;
    line-height: 1.2;
}

.measurements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    padding: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.form-control {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 85, 48, 0.1);
}

/* Section Toggle Controls */
.section-controls {
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.control-header {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    text-align: center;
}

.control-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.toggle-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
}

.toggle-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 1rem;
    border: none;
    background: white;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-align: center;
}

.toggle-btn:last-child {
    border-right: none;
}

.toggle-btn:hover {
    background: var(--light-bg);
    transform: translateY(-2px);
}

.toggle-btn.active {
    background: var(--primary-color);
    color: white;
}

.toggle-btn.active:hover {
    background: #1e3d21;
}

.toggle-btn .btn-icon {
    font-size: 1.5rem;
}

.toggle-btn .btn-urdu {
    font-size: 0.8rem;
    opacity: 0.8;
    margin: 0;
}

/* Notes Section */
.notes-content {
    padding: 1.5rem;
}

.notes-content .form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding: 2rem 1.5rem;
    background: var(--light-bg);
    border-top: 1px solid var(--border-color);
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    min-width: 160px;
    justify-content: center;
}

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

.btn-primary:hover {
    background: #1e3d21;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 85, 48, 0.3);
}

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

.btn-secondary:hover {
    background: #e09043;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 162, 97, 0.3);
}

.btn-icon {
    font-size: 1.1rem;
}

.btn-urdu {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-left: 0.3rem;
}

/* Improved Form Control Styling */
.form-control {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 85, 48, 0.1);
    background: #fafafa;
}

.form-control::placeholder {
    color: #999;
    font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .measurements-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .customer-badges {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .form-title {
        font-size: 1.2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    
    .title-urdu {
        margin-left: 0;
    }
    
    .gender-options {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .form-body {
        padding: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
        padding: 1.5rem 1rem;
    }
    
    .btn {
        width: 100%;
        min-width: auto;
    }
    
    .measurements-form-container {
        margin: 0.5rem;
        border-radius: 8px;
    }
    
    .form-header {
        padding: 1rem;
    }
    
    .section-header {
        padding: 0.75rem;
    }
    
    .section-title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .form-title {
        font-size: 1rem;
    }
    
    .title-icon {
        font-size: 1.4rem;
    }
    
    .section-icon {
        font-size: 1.1rem;
    }
    
    .option-icon {
        font-size: 1.5rem;
    }
    
    .measurements-grid {
        padding: 0.75rem;
    }
    
    .form-control {
        padding: 0.6rem;
        font-size: 0.95rem;
    }
    
    .toggle-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .toggle-btn {
        padding: 0.8rem;
    }
    
    .toggle-btn .btn-icon {
        font-size: 1.2rem;
    }
}

@media (max-width: 320px) {
    .toggle-buttons {
        grid-template-columns: 1fr;
    }
}

.btn-outline {
    background: white !important;
    border: 1px solid var(--border-color) !important;
    color: var(--dark-text) !important;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--light-bg);
    color: var(--dark-text);
    line-height: 1.6;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-color), #1e3a21);
    color: white;
    padding: 1rem 0;
    box-shadow: var(--shadow);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 2rem;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 600;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-name {
    font-weight: 500;
}

.logout-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.logout-btn:hover {
    background: #d63031;
}

/* Navigation */
.nav {
    background: white;
    border-bottom: 1px solid var(--border-color);
    padding: 0.5rem 0;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    flex-wrap: nowrap;
    align-items: center;
}

.nav-item a {
    color: var(--dark-text);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.nav-item a:hover,
.nav-item a.active {
    background: var(--primary-color);
    color: white;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .nav-menu {
        gap: 0.8rem;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .nav-item a {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        gap: 0.5rem;
    }
    
    .nav-item a {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
}

/* Customer Details Layout */
.customer-details-layout {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.customer-picture-section {
    flex-shrink: 0;
}

.customer-photo {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    object-fit: cover;
    border: 3px solid #ddd;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.customer-photo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    background: #f8f9fa;
    border: 3px dashed #ddd;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 2rem;
}

.customer-photo-placeholder small {
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

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

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

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

.info-label {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 1.1rem;
    color: var(--dark-text);
    font-weight: 500;
    word-wrap: break-word;
}

.address-item {
    grid-column: 1 / -1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .customer-details-layout {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .customer-picture-section {
        align-self: center;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .info-item {
        text-align: left;
        padding: 1rem;
        background: #f8f9fa;
        border-radius: 8px;
        border-left: 4px solid var(--primary-color);
    }
    
    .info-label {
        font-size: 0.8rem;
    }
    
    .info-value {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .customer-photo,
    .customer-photo-placeholder {
        width: 100px;
        height: 100px;
    }
    
    .info-item {
        padding: 0.8rem;
    }
}

/* Measurements Layout */
.measurements-section {
    margin-bottom: 2rem;
}

.measurements-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.measurements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.measurement-item {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.measurement-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.measurement-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.measurement-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-text);
}

.measurements-notes {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #fff3cd;
    border-radius: 8px;
    border-left: 4px solid var(--warning-color);
}

.notes-content {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-text);
}

.measurements-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
    text-align: center;
}

.measurements-footer small {
    color: #666;
    font-style: italic;
}

/* Mobile Measurements */
@media (max-width: 768px) {
    .measurements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .measurement-item {
        padding: 0.8rem;
    }
    
    .measurement-label {
        font-size: 0.75rem;
    }
    
    .measurement-value {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .measurements-grid {
        grid-template-columns: 1fr;
    }
    
    .measurements-notes {
        padding: 1rem;
    }
}

/* Modern Customer Profile Card */
.customer-profile-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    color: white !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

/* Customer table specific styles */
.table .customer-name {
    color: var(--dark-text) !important;
    font-weight: 500;
    font-size: 0.9rem !important;
}

/* Enhanced Button Styles */
.btn {
    border-radius: 8px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    border: none !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    text-decoration: none !important;
}

.btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
}

.btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3) !important;
    color: white !important;
}

.btn-secondary {
    background: linear-gradient(135deg, #6c757d, #545b62) !important;
    color: white !important;
}

.btn-success {
    background: linear-gradient(135deg, #28a745, #1e7e34) !important;
    color: white !important;
}

.btn-warning {
    background: linear-gradient(135deg, #ffc107, #e0a800) !important;
    color: #212529 !important;
}

.btn-danger {
    background: linear-gradient(135deg, #dc3545, #c82333) !important;
    color: white !important;
}

.btn-info {
    background: linear-gradient(135deg, #17a2b8, #138496) !important;
    color: white !important;
}

/* Action buttons styling */
.action-buttons {
    min-width: 220px;
    display: flex;
    gap: 0.15rem;
    justify-content: center;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.action-buttons .btn {
    padding: 0.3rem 0.5rem !important;
    font-size: 0.8rem !important;
    min-width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px !important;
}

/* Form Controls */
.form-control {
    border-radius: 8px !important;
    border: 2px solid #e9ecef !important;
    padding: 0.75rem 1rem !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
}

.form-control:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25) !important;
    outline: none !important;
}

.form-#cloth_picture:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

/* Order details cloth picture display */
.cloth-picture-display {
    margin-top: 8px;
}

.order-cloth-image {
    max-width: 300px;
    max-height: 200px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    object-fit: cover;
    border: 1px solid #ddd;
}

/* Form actions - responsive button container */
.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    padding: 20px 0;
    border-top: 1px solid #eee;
    position: sticky;
    bottom: 0;
    background: white;
    z-index: 10;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.form-actions .btn {
    min-width: 120px;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-actions .btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.form-actions .btn-secondary {
    background: #6c757d;
    border-color: #6c757d;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-actions {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 15px 20px;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        justify-content: center;
    }
    
    .form-actions .btn {
        flex: 1;
        max-width: 150px;
    }
}

/* Ensure form has bottom padding for sticky buttons */
.card-body form {
    padding-bottom: 80px;
}

/* Make form container scrollable and draggable */
.card {
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
}

.card-body {
    max-height: calc(85vh - 60px);
    overflow-y: auto;
    scroll-behavior: smooth;
}

/* Custom scrollbar styling */
.card-body::-webkit-scrollbar {
    width: 8px;
}

.card-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.card-body::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.card-body::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Make card header draggable */
.card-header {
    cursor: move;
    user-select: none;
    position: sticky;
    top: 0;
    z-index: 20;
    background: white;
    border-bottom: 1px solid #eee;
}

.card-header:hover {
    background: #f8f9fa;
}

/* Card Enhancements */
.card {
    border-radius: 15px !important;
    border: none !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
    transition: all 0.3s ease !important;
}

.card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12) !important;
    transform: translateY(-2px) !important;
}

.card-header {
    background: linear-gradient(135deg, var(--primary-color), #1e3a21) !important;
    color: white !important;
    border-radius: 15px 15px 0 0 !important;
    padding: 1rem 1.5rem !important;
    font-weight: 600 !important;
    border-bottom: none !important;
}

.card-body {
    padding: 1.5rem !important;
}

/* Table Enhancements */
.table {
    margin-bottom: 0 !important;
}

.table th {
    background: linear-gradient(135deg, #28a745, #20c997) !important;
    font-weight: 700 !important;
    color: white !important;
    border-bottom: none !important;
    padding: 1rem 0.75rem !important;
    font-size: 0.9rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
}

.table td {
    padding: 0.75rem !important;
    vertical-align: middle !important;
    border-bottom: 1px solid #f0f0f0 !important;
}

.table tbody tr:hover {
    background-color: #f8f9fa !important;
    transition: background-color 0.2s ease !important;
}

/* Alert Enhancements */
.alert {
    border-radius: 12px !important;
    border: none !important;
    padding: 1rem 1.5rem !important;
    margin-bottom: 1.5rem !important;
    font-weight: 500 !important;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb) !important;
    color: #155724 !important;
    border-left: 4px solid #28a745 !important;
}

.alert-danger {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb) !important;
    color: #721c24 !important;
    border-left: 4px solid #dc3545 !important;
}

.alert-warning {
    background: linear-gradient(135deg, #fff3cd, #ffeeba) !important;
    color: #856404 !important;
    border-left: 4px solid #ffc107 !important;
}

/* Modal Enhancements */
.modal {
    backdrop-filter: blur(5px) !important;
}

.modal .card {
    border-radius: 20px !important;
    overflow: hidden !important;
    animation: modalSlideIn 0.3s ease !important;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Page Header Styling */
h2, h3, h4, h5, h6 {
    color: var(--dark-text) !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
}

h2 {
    font-size: 1.8rem !important;
    color: var(--primary-color) !important;
}

/* Header logo title styling */
.logo h1 {
    color: white !important;
    font-weight: 700 !important;
    margin: 0 !important;
    font-size: 1.5rem !important;
}

.logo div {
    color: white !important;
}

.logo small {
    color: white !important;
    opacity: 0.8 !important;
}

/* Search Input Styling */
input[type="text"], input[type="email"], input[type="tel"], textarea, select {
    border-radius: 8px !important;
    border: 2px solid #e9ecef !important;
    padding: 0.75rem 1rem !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    background: white !important;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, textarea:focus, select:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25) !important;
    outline: none !important;
}

/* Utility Classes */
.d-flex {
    display: flex !important;
}

.justify-between {
    justify-content: space-between !important;
}

.align-center {
    align-items: center !important;
}

.text-center {
    text-align: center !important;
}

.text-nowrap {
    white-space: nowrap !important;
}

.mb-3 {
    margin-bottom: 1.5rem !important;
}

/* Remove global white color override to prevent affecting other pages */

.customer-profile-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    z-index: 0;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.profile-avatar {
    position: relative;
}

.avatar-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid rgba(255,255,255,0.3);
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.avatar-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 4px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.avatar-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: #ffc107 !important;
    color: #212529 !important;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 10;
}

.profile-info {
    flex: 1;
}

.customer-name {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin: 0 0 0.5rem 0 !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3) !important;
    color: white !important;
    display: block !important;
    visibility: visible !important;
}

.customer-mobile, .member-since {
    margin: 0.5rem 0 !important;
    font-size: 1.1rem !important;
    opacity: 1 !important;
    color: white !important;
    display: block !important;
    visibility: visible !important;
    font-weight: 500 !important;
}

.profile-address {
    margin-top: 1.5rem !important;
    padding: 1rem !important;
    background: rgba(255,255,255,0.1) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 1rem !important;
    position: relative !important;
    z-index: 1 !important;
    visibility: visible !important;
}

.address-icon {
    font-size: 1.2rem !important;
    margin-top: 0.2rem !important;
    color: white !important;
}

.address-text {
    flex: 1 !important;
    line-height: 1.6 !important;
    color: white !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
}

/* Measurements Dashboard */
.measurements-dashboard {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    overflow: hidden;
}

.dashboard-header {
    background: linear-gradient(135deg, var(--primary-color), #1e3a21);
    color: white;
    padding: 1.5rem 2rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.update-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.update-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.measurements-container {
    padding: 2rem;
}

.measurement-category {
    margin-bottom: 2rem;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.category-icon {
    font-size: 1.8rem;
}

.category-title {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
}

.measurement-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.measure-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.measure-card:hover {
    background: #e9ecef;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: var(--secondary-color);
}

.measure-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.measure-info {
    flex: 1;
}

.measure-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
}

.measure-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-text);
}

.notes-section {
    margin-top: 2rem;
    background: linear-gradient(135deg, #fff3cd, #ffeeba);
    border-radius: 15px;
    padding: 1.5rem;
    border-left: 5px solid var(--warning-color);
}

.notes-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.notes-icon {
    font-size: 1.5rem;
}

.notes-title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #856404;
}

.notes-content p {
    margin: 0;
    line-height: 1.6;
    color: #856404;
    font-size: 1rem;
}

.measurements-meta {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.meta-icon {
    font-size: 1rem;
    opacity: 0.7;
}

.meta-text {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.no-measurements {
    padding: 3rem 2rem;
}

.empty-state {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.empty-text {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .customer-profile-card {
        padding: 1.5rem;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .customer-name {
        font-size: 1.3rem !important;
    }
    
    .dashboard-header {
        padding: 1rem 1.5rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .measurements-container {
        padding: 1.5rem;
    }
    
    .measurement-cards {
        grid-template-columns: 1fr;
    }
    
    .measure-card {
        padding: 1rem;
    }
    
    .measure-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .customer-profile-card {
        padding: 1rem;
        border-radius: 15px;
    }
    
    .avatar-image, .avatar-placeholder {
        width: 100px;
        height: 100px;
    }
    
    .avatar-placeholder {
        font-size: 2.5rem;
    }
    
    .measurements-container {
        padding: 1rem;
    }
}

/* Main Container */
.container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 15px;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1600px;
    }
}

/* Cards */
.card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    overflow: hidden;
    width: 100%;
}

.card-header {
    background: var(--primary-color);
    color: white;
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-body {
    padding: 1.5rem;
}

/* Dashboard Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: white;
    padding: 0.75rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    border-left: 3px solid var(--primary-color);
}

.stat-card.orders {
    border-left-color: var(--secondary-color);
}

.stat-card.revenue {
    border-left-color: var(--success-color);
}

.stat-card.pending {
    border-left-color: var(--warning-color);
}

.stat-icon {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
    color: var(--primary-color);
}

.stat-number {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--dark-text);
    margin-bottom: 0.1rem;
}

.stat-label {
    color: #666;
    font-size: 0.8rem;
}

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

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-text);
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(44, 85, 48, 0.2);
}

.form-control.error {
    border-color: var(--danger-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s;
    text-align: center;
}

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

.btn-primary:hover {
    background: #1e3a21;
}

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

.btn-secondary:hover {
    background: #e09f3e;
}

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

.btn-success:hover {
    background: #21867a;
}

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

.btn-danger:hover {
    background: #d63031;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Tables */
.table-responsive {
    overflow-x: auto;
    width: 100%;
}

/* Table Styles */
.table {
    width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
    background: linear-gradient(135deg, var(--primary-color), #1e3a21);
    color: white;
    font-weight: 600;
    text-align: left;
    position: relative;
    white-space: nowrap;
}

.table tbody + tbody {
    border-top: 2px solid #dee2e6;
}

/* Measurements Table Specific Styles */
.table-compact th {
    padding: 0.5rem 0.3rem;
    font-size: 0.85rem;
    text-align: center;
}

.table-compact td {
    padding: 0.5rem 0.3rem;
    font-size: 0.9rem;
}

.col-narrow {
    width: 8%;
    min-width: 80px;
}

.col-customer {
    width: 15%;
    min-width: 120px;
}

.col-medium {
    width: 7%;
    min-width: 60px;
}

.col-actions {
    width: 10%;
    min-width: 90px;
}

/* Enhanced table styling */
.table-compact {
    font-size: 1rem;
    border-collapse: collapse;
    width: 100%;
    table-layout: auto;
    min-width: 100%;
}

.table-compact th {
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 8px;
    text-align: left;
    vertical-align: middle;
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    white-space: nowrap;
}

.table-compact td {
    font-size: 0.95rem;
    padding: 10px 8px;
    vertical-align: middle;
    border-bottom: 1px solid #dee2e6;
    line-height: 1.4;
}

.table-compact tbody tr:hover {
    background-color: #f5f5f5;
}

/* Text alignment classes */
.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}

.text-nowrap {
    white-space: nowrap !important;
}

/* Button standardization */
.btn-xs {
    padding: 6px 12px !important;
    font-size: 0.875rem !important;
    line-height: 1.2 !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    display: inline-block !important;
    border: none !important;
    cursor: pointer !important;
    font-weight: 500 !important;
}

.btn-primary {
    background-color: #007bff !important;
    color: white !important;
}

.btn-success {
    background-color: #28a745 !important;
    color: white !important;
}

.btn-warning {
    background-color: #ffc107 !important;
    color: #212529 !important;
}

.btn-danger {
    background-color: #dc3545 !important;
    color: white !important;
}

/* Action button container */
.action-buttons {
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

/* Status badges */
.status-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Customer info stacking */
.customer-info {
    line-height: 1.3;
}

.customer-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
}

.customer-mobile {
    font-size: 0.85rem;
    color: #666;
    font-weight: 400;
}

/* Column width controls */
.col-narrow {
    width: 100px;
    max-width: 100px;
}

.col-medium {
    width: 160px;
    max-width: 160px;
}

.col-wide {
    width: 200px;
    max-width: 200px;
}

.col-actions {
    width: 180px;
    min-width: 180px;
}

/* Wider columns for better data display */
.col-customer {
    width: 220px;
    max-width: 220px;
}

.col-description {
    width: 180px;
    max-width: 180px;
}

.col-price {
    width: 120px;
    max-width: 120px;
}

/* Mobile responsive table */
@media (max-width: 768px) {
    .table-compact {
        font-size: 0.9rem;
    }
    
    .table-compact th {
        font-size: 0.9rem;
        padding: 8px 6px;
    }
    
    .table-compact td {
        font-size: 0.85rem;
        padding: 8px 6px;
    }
    
    /* Hide less important columns on mobile for dashboard */
    #ordersTable th:nth-child(3),
    #ordersTable td:nth-child(3) {
        display: none;
    }
    
    #ordersTable th:nth-child(6),
    #ordersTable td:nth-child(6) {
        display: none;
    }
    
    /* Hide picture column on mobile for customers */
    #customersTable th:nth-child(4),
    #customersTable td:nth-child(4) {
        display: none;
    }
    
    /* Hide less important measurement columns on mobile */
    #measurementsTable th:nth-child(5),
    #measurementsTable td:nth-child(5),
    #measurementsTable th:nth-child(6),
    #measurementsTable td:nth-child(6) {
        display: none;
    }
    
    /* Compact action buttons on mobile */
    .action-buttons {
        gap: 4px;
        flex-wrap: wrap;
    }
    
    /* Smaller buttons on mobile */
    .btn-xs {
        padding: 4px 8px !important;
        font-size: 0.8rem !important;
    }
    
    .col-narrow,
    .col-medium,
    .col-wide {
        width: auto;
        max-width: none;
    }
}

/* Status badges */
.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-in-progress {
    background: #cce5ff;
    color: #004085;
}

.status-ready {
    background: #d4edda;
    color: #155724;
}

.status-delivered {
    background: #e2e3e5;
    color: #383d41;
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

/* Login Page */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), #1e3a21);
}

.login-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 400px;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.login-title {
    color: var(--dark-text);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.login-subtitle {
    color: #666;
    font-size: 0.9rem;
}

/* Measurements Grid */
.measurements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .nav-menu {
        justify-content: center;
        gap: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .measurements-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        justify-content: center;
    }
    
    .table-responsive {
        font-size: 0.9rem;
    }
    
    .table th,
    .table td {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    .login-card {
        margin: 1rem;
        padding: 1.5rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.d-flex { display: flex; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }

/* Pakistani/Urdu specific styles */
.urdu-text {
    font-family: 'Noto Nastaliq Urdu', 'Jameel Noori Nastaleeq', serif;
    direction: rtl;
    text-align: right;
}

.language-toggle {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.language-toggle:hover {
    background: rgba(255,255,255,0.3);
}

/* Radio button styling */
.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.radio-label:hover {
    border-color: var(--primary-color);
    background: #fff;
}

.radio-label input[type="radio"]:checked + span,
.radio-label:has(input[type="radio"]:checked) {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
}

.radio-label input[type="radio"] {
    margin: 0;
}

/* Gender specific styling */
#ladies-measurements {
    border: 2px dashed #e91e63;
    padding: 15px;
    border-radius: 8px;
    background: #fce4ec;
}

/* Icons for Pakistani tailor theme */
.icon-shirt::before { content: "👔"; }
.icon-pants::before { content: "👖"; }
.icon-scissors::before { content: "✂️"; }
.icon-tape::before { content: "📏"; }
.icon-customer::before { content: "👤"; }
.icon-order::before { content: "📋"; }
.icon-payment::before { content: "💰"; }
.icon-dashboard::before { content: "📊"; }
.icon-staff::before { content: "👥"; }

/* Print styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    .card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .btn {
        display: none;
    }
}
