/* Wholesale-specific styles */

/* Common wholesale page styles */
.wholesale-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.wholesale-header {
    margin-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 15px;
}

.wholesale-header h1 {
    color: #333;
    margin: 0 0 15px 0;
    font-size: 1.8rem;
}

/* Form styles */
.form-container {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.form-help {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 12px;
}

.form-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 25px;
}

/* Button styles */
.btn-primary,
.btn-secondary {
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.btn-primary:hover {
    background-color: #0056b3;
}

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

.btn-secondary:hover {
    background-color: #545b62;
}

/* Status badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

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

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

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

.status-shipped {
    background: #d1ecf1;
    color: #0c5460;
}

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

.status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

.status-suspended {
    background: #f8d7da;
    color: #721c24;
}

/* Table styles */
.table-container {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.wholesale-table {
    width: 100%;
    border-collapse: collapse;
}

.wholesale-table th {
    background: #f8f9fa;
    padding: 15px 12px;
    text-align: left;
    font-weight: bold;
    color: #333;
    border-bottom: 2px solid #e0e0e0;
}

.wholesale-table td {
    padding: 12px;
    border-bottom: 1px solid #e0e0e0;
    vertical-align: middle;
}

.wholesale-table tr:hover {
    background: #f8f9fa;
}

/* Responsive design */
@media (max-width: 768px) {
    .wholesale-container {
        padding: 15px;
    }

    .form-container {
        padding: 20px;
    }

    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        justify-content: center;
    }

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

    .wholesale-table {
        min-width: 600px;
    }

    .wholesale-table th,
    .wholesale-table td {
        padding: 8px 6px;
        font-size: 14px;
    }
}

/* Wholesale Application Form */
.wholesale-container { max-width: 880px; margin: 0 auto; padding: 1rem 0.5rem; }

.wholesale-header {
    text-align: center;
    margin-bottom: 3rem;
}

.wholesale-header .icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.wholesale-header .icon-wrapper i {
    color: white;
    font-size: 1.5rem;
}

.wholesale-header h2 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 2rem;
    font-weight: 700;
}

.wholesale-header p {
    color: #6c757d;
    font-size: 1.1rem;
}

.wholesale-form { background:#fff; border-radius:12px; box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1)); padding: 1.25rem; }

.form-section { margin-bottom: 1.25rem; }

.section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 1.5rem;
}

.section-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-icon i {
    color: white;
    font-size: 0.875rem;
}

.section-title {
    color: #2c3e50;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.form-row { display:grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: .75rem; }

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

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

.form-label { display:block; margin-bottom:.35rem; font-weight:500; color:#495057; font-size:.9rem; }

.form-control, .input, .form-select, .wholesale-form input[type="text"], .wholesale-form input[type="number"], .wholesale-form input[type="tel"], .wholesale-form input[type="url"], .wholesale-form input[type="date"], .wholesale-form select, .wholesale-form textarea { width:100%; padding:.6rem .7rem; border:1px solid #dee2e6; border-radius:6px; font-size:.95rem; transition: all .2s ease; }

.form-control:focus, .wholesale-form input:focus, .wholesale-form select:focus, .wholesale-form textarea:focus { outline:none; border-color:#667eea; box-shadow:0 0 0 3px rgba(102,126,234,.1); }

.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Compact, accessible checkbox styling for wholesale form */
.checkbox-control { display:flex; align-items:flex-start; gap:.5rem; cursor:pointer; user-select:none; }
.checkbox-input { position:absolute; opacity:0; width:0; height:0; }
.checkbox-custom { width:18px; height:18px; border:1.5px solid #cbd5e1; border-radius:4px; background:#fff; display:inline-block; position:relative; margin-top:2px; flex-shrink:0; transition: all .15s ease; }
.checkbox-input:focus + .checkbox-custom { box-shadow:0 0 0 3px rgba(102,126,234,.25); border-color:#667eea; }
.checkbox-input:checked + .checkbox-custom { background:#667eea; border-color:#667eea; }
.checkbox-input:checked + .checkbox-custom::after { content:""; position:absolute; left:4px; top:0px; width:6px; height:12px; border:2px solid #fff; border-top:0; border-left:0; transform: rotate(45deg); }
.label-text { color:#374151; }

.help-text {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

.required {
    color: #dc3545;
    font-weight: bold;
}

.btn { display:inline-flex; align-items:center; gap:.5rem; padding:.6rem 1.25rem; border:none; border-radius:6px; font-weight:500; cursor:pointer; text-decoration:none; transition:all .2s ease; font-size:.95rem; }

.btn-primary { background: var(--color-primary-600, #667eea); color:#fff; }

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.form-actions { display:flex; justify-content:center; gap:.75rem; margin-top:1.25rem; padding-top:1.25rem; border-top:1px solid #e9ecef; }

/* Responsive Design for Application Form */
@media (max-width: 768px) {
    .wholesale-container { padding: .75rem .25rem; }

    .wholesale-form { padding: 1rem; }

    .wholesale-header h2 {
        font-size: 1.75rem;
    }

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

    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

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

    .btn { width:100%; justify-content:center; }
}

@media (max-width: 480px) {
    .wholesale-header .icon-wrapper {
        width: 48px;
        height: 48px;
    }

    .wholesale-header .icon-wrapper i {
        font-size: 1.25rem;
    }

    .wholesale-header h2 {
        font-size: 1.5rem;
    }

    .wholesale-form {
        padding: 1rem;
    }

    .section-icon {
        width: 28px;
        height: 28px;
    }

    .section-title {
        font-size: 1.1rem;
    }
}

/* Wholesale Dashboard */
.wholesale-dashboard {
    padding: 2rem 0;
}

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

.stat-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-color);
}

.stat-card.credit {
    border-left-color: #28a745;
}

.stat-card.warning {
    border-left-color: #ffc107;
}

.stat-card.danger {
    border-left-color: #dc3545;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Credit Summary */
.credit-summary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

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

.credit-item h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.8rem;
    font-weight: bold;
}

.credit-item p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

.credit-progress {
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    height: 8px;
    overflow: hidden;
}

.credit-progress-bar {
    height: 100%;
    background: #28a745;
    transition: width 0.3s ease;
}

.credit-progress-bar.warning {
    background: #ffc107;
}

.credit-progress-bar.danger {
    background: #dc3545;
}

/* Wholesale Product Grid */
.wholesale-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.wholesale-product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wholesale-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.wholesale-product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.wholesale-product-info {
    padding: 1.5rem;
}

.wholesale-product-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.wholesale-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.wholesale-price {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--primary-color);
}

.retail-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

.savings-badge {
    background: #28a745;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.quantity-input {
    width: 80px;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
}

/* Wholesale Cart */
.wholesale-cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.wholesale-cart-table th,
.wholesale-cart-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.wholesale-cart-table th {
    background: #f8f9fa;
    font-weight: bold;
    color: var(--text-color);
}

.cart-product-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-total-section {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.total-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.total-row.final {
    font-size: 1.2rem;
    font-weight: bold;
    border-bottom: 2px solid var(--primary-color);
    color: var(--primary-color);
}

/* Invoice Styles */
.invoice-header {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.invoice-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.invoice-status {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
}

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

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

.invoice-status.overdue {
    background: #f8d7da;
    color: #721c24;
}

.invoice-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.invoice-section h4 {
    margin-bottom: 1rem;
    color: var(--text-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

/* Payment Terms */
.payment-terms {
    background: #e3f2fd;
    border: 1px solid #2196f3;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.payment-terms h4 {
    color: #1976d2;
    margin-bottom: 1rem;
}

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

.term-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(33, 150, 243, 0.2);
}

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

/* Application Forms */
.wholesale-application {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.form-section:last-child {
    border-bottom: none;
}

.form-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(var(--primary-color-rgb), 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Status Indicators */
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

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

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

.status-indicator.rejected {
    background: #f8d7da;
    color: #721c24;
}

.status-indicator.suspended {
    background: #f0f0f0;
    color: #6c757d;
}

/* Order History */
.order-history-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.order-history-table th,
.order-history-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.order-history-table th {
    background: #f8f9fa;
    font-weight: bold;
}

.order-history-table tr:hover {
    background: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .wholesale-stats {
        grid-template-columns: 1fr;
    }
    
    .wholesale-products {
        grid-template-columns: 1fr;
    }
    
    .credit-info {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .wholesale-cart-table {
        font-size: 0.9rem;
    }
    
    .wholesale-cart-table th,
    .wholesale-cart-table td {
        padding: 0.5rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

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

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

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

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.btn-wholesale {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

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

.btn-wholesale.secondary {
    background: #6c757d;
}

.btn-wholesale.secondary:hover {
    background: #5a6268;
}

.btn-wholesale.success {
    background: #28a745;
}

.btn-wholesale.success:hover {
    background: #218838;
}

.btn-wholesale.danger {
    background: #dc3545;
}

.btn-wholesale.danger:hover {
    background: #c82333;
}

/* ===== Dialogs (wholesale modal) ===== */
.dialog { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.45); backdrop-filter: blur(2px); z-index: 1050; align-items: center; justify-content: center; padding: 1rem; }
.dialog.show { display: flex; }
.dialog-container { width: 100%; max-width: 720px; }
.dialog-container.dialog-lg { max-width: 900px; }
.dialog-content { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; box-shadow: 0 20px 40px rgba(0,0,0,0.2); overflow: hidden; }
.dialog-header, .dialog-footer { padding: 0.75rem 1rem; background: #f9fafb; }
.dialog-header { border-bottom: 1px solid #e5e7eb; display:flex; align-items:center; justify-content: space-between; }
.dialog-footer { border-top: 1px solid #e5e7eb; }
.dialog-title { margin: 0; font-size: 1rem; font-weight: 600; }
.dialog-body { padding: 1rem; background: #fff; }
.btn-close { background: none; border: 0; font-size: 1.125rem; opacity: .7; cursor: pointer; }
.btn-close:hover { opacity: 1; }

@media (max-width: 640px) {
    .dialog-container { max-width: 95%; }
    .dialog-body { padding: 0.75rem; }
}

/* Wholesale Application Status */
.wh-status-container { max-width: 860px; margin: 0 auto; padding: 1rem; }
.status-header h2 { margin: 0 0 .75rem; color:#1f2937; font-size:1.5rem; font-weight:700; text-align:center; }
.status-banner { display:flex; flex-wrap:wrap; align-items:center; gap:.75rem 1rem; padding:1rem; border-radius:10px; border:1px solid #e5e7eb; background:#f9fafb; margin-bottom:1rem; }
.status-banner .status-pill { display:inline-flex; align-items:center; gap:.5rem; padding:.35rem .6rem; border-radius:999px; font-weight:600; }
.status-banner.status-pending .status-pill { background:#fff7ed; color:#9a3412; }
.status-banner.status-approved .status-pill { background:#ecfdf5; color:#065f46; }
.status-banner.status-rejected .status-pill { background:#fef2f2; color:#991b1b; }
.status-banner .status-text { flex:1 1 300px; color:#374151; }
.status-banner .status-text .muted { color:#6b7280; font-size:.9rem; margin-top:.25rem; }
.status-banner .status-actions { display:flex; gap:.5rem; flex-wrap:wrap; }

.status-section { background:#fff; border:1px solid #e5e7eb; border-radius:10px; padding:1rem; margin-bottom:1rem; }
.status-section.muted { background:#f9fafb; }
.section-heading { margin:0 0 .75rem; font-size:1.1rem; color:#111827; display:flex; align-items:center; gap:.5rem; }
.section-subheading { margin:0 0 .5rem; font-size:1rem; color:#111827; display:flex; align-items:center; gap:.5rem; }
.detail-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap:.75rem 1rem; }
.detail-item { display:flex; flex-direction:column; gap:.15rem; padding:.5rem .6rem; background:#f9fafb; border:1px solid #eef2f7; border-radius:8px; }
.detail-item label { font-size:.8rem; color:#6b7280; }
.detail-item span { color:#111827; font-weight:500; }
.next-list { list-style:none; padding:0; margin:0; display:grid; gap:.4rem; }
.next-list li { display:flex; align-items:center; gap:.5rem; color:#374151; }
.status-empty { background:#fff; border:1px solid #e5e7eb; border-radius:10px; padding:2rem 1.25rem; text-align:center; }
.status-empty .icon { font-size:2rem; color:#d97706; margin-bottom:.5rem; }

@media (max-width: 640px) {
  .status-banner { padding:.75rem; }
  .status-actions { width:100%; }
  .status-actions .btn { width:100%; justify-content:center; }
}
