/* Simple Classic Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
    box-sizing: border-box;
}

/* Slight glass blur for modern feel */
.modal.modal--active {
    backdrop-filter: blur(3px) saturate(1.03);
}

.modal.modal--active {
    display: flex;
}

.modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    width: 100%;
    max-width: 450px;
    border: 1px solid #ddd;
}

/* Payment Modal Specific Styles */
#payment-modal .modal-content {
    max-width: 400px;
}

/* Payment modal quick amounts and spinner */
.payment-quick-amounts {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.6rem;
    flex-wrap: nowrap; /* force single-line compact layout */
    align-items: center;
}
.payment-quick-amounts .quick-amt {
    background: linear-gradient(180deg,#fff,#f6f6f8);
    border: 1px solid #e0e0e6;
    padding: 0.28rem 0.6rem; /* slightly reduced vertical padding */
    border-radius: 999px; /* pill look */
    cursor: pointer;
    font-weight: 700;
    color: #222;
    transition: transform .08s ease, box-shadow .08s ease;
    font-size: 14px;
    white-space: nowrap;
}
.payment-quick-amounts .quick-amt:hover { transform: translateY(-1px); box-shadow: 0 4px 10px rgba(0,0,0,0.06); }
.payment-quick-amounts .quick-full { background: linear-gradient(90deg,#ffe8e8,#fff4f4); border-color:#ffb4b4; }

.btn-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
    border-top-color: rgba(255,255,255,0.9);
    margin-right: 0.5rem;
    vertical-align: middle;
    animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Small responsive tweaks for payment modal */
.modal--active #payment-modal .modal-content { max-width: 520px; }
.payment-quick-amounts .quick-amt:focus { outline: 2px solid #6b46c1; outline-offset: 2px; }

.modal-content h3 {
    margin: 0 0 25px 0;
    font-size: 22px;
    font-weight: 600;
    color: #333;
    text-align: center;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

/* Modern payment modal enhancements */
#payment-modal .modal-content {
    background: linear-gradient(180deg, #ffffff, #fbfdff);
    border-radius: 12px;
    padding: 22px 26px;
    box-shadow: 0 10px 30px rgba(30,30,60,0.12);
    border: 1px solid rgba(34,34,60,0.06);
}

/* subtle pop on show */
.modal.modal--active .modal-content {
    transform: translateY(0) scale(1);
}
.modal-content {
    transition: transform 220ms cubic-bezier(.2,.8,.2,1), box-shadow 220ms ease;
}
.modal-content:hover {
    transform: translateY(-3px) scale(1.004);
}

#payment-modal .payment-header {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 12px;
}

#payment-modal .payment-header .avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg,#8E44AD,#6B46C1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 6px 18px rgba(107,70,193,0.12);
}

/* Close button: cleaner, circular */
.modal .close {
    background: rgba(255,255,255,0.9);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(20,20,40,0.06);
    right: 18px;
    top: 18px;
}
.modal .close:hover { background: #fff; color: #222; transform: translateY(-2px); }

#payment-modal .payment-header .customer-info {
    display: flex;
    flex-direction: column;
}

#payment-modal .customer-name {
    font-weight: 700;
    color: #222;
    font-size: 16px;
}

#payment-modal .payment-sub {
    font-size: 13px;
    color: #666;
}

#payment-modal .payment-total {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 12px 0 16px 0;
}

#payment-modal .payment-total .amount {
    font-size: 28px;
    font-weight: 800;
    color: #2E7D32;
    letter-spacing: 0.5px;
}

/* subtle pulse when shown */
@keyframes amountPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}
.payment-total .amount.animate {
    animation: amountPulse 900ms ease-in-out;
}

#payment-modal .payment-total .label {
    font-size: 13px;
    color: #666;
}

/* Make the amount input more tactile */
#payment-modal input[type="number"],
#payment-modal input[type="text"] {
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid rgba(34,34,60,0.06);
    background: #fff;
    box-shadow: inset 0 -1px 0 rgba(34,34,60,0.02);
    font-size: 15px;
    border-color: black;
}

#payment-modal input[type="number"]:focus {
    border-color: #6B46C1;
    box-shadow: 0 6px 20px rgba(107,70,193,0.08);
}

/* Pill style quick amounts */
.payment-quick-amounts {
    gap: 0.5rem;
}
.payment-quick-amounts .quick-amt {
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: #fafafa;
    border: 1px solid rgba(34,34,60,0.06);
    color: #2b2b2b;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(18,18,30,0.03);
    font-size: 14px;
    white-space: nowrap;
}
.payment-quick-amounts .quick-amt.active { background: linear-gradient(90deg,#f3e8ff,#f9f5ff); }
.payment-quick-amounts .quick-amt:hover {
    transform: translateY(-2px);
}

.payment-quick-amounts .quick-full {
    background: linear-gradient(90deg,#ffecec,#fff6f6);
    border-color: rgba(255,72,72,0.12);
    color: #c0392b;
}

.payment-quick-amounts .quick-amt.active {
    box-shadow: 0 6px 18px rgba(107,70,193,0.14);
    transform: translateY(-2px);
    border-color: rgba(107,70,193,0.18);
}

/* Payment message (inline) */
#payment-message.payment-message {
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 14px;
}

#payment-message.payment-message.success { background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
#payment-message.payment-message.error { background: #ffebee; color: #c62828; border: 1px solid #ffcdd2; }
#payment-message.payment-message.info { background: #e9f4ff; color: #0b64c8; border: 1px solid #cfe7ff; }

/* Primary process button: gradient, subtle shadow */
#process-payment-btn {
    background: linear-gradient(90deg,#2E7D32,#1B5E20);
    color: #fff;
    box-shadow: 0 8px 18px rgba(30,125,50,0.14);
    border-radius: 10px;
    padding: 12px 22px;
    border: none;
    font-weight: 700;
    letter-spacing: 0.2px;
}
#process-payment-btn::before { content: "💳"; margin-right: 8px; }
#process-payment-btn:hover:not(:disabled) {
    transform: translateY(-2px);
}
#process-payment-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    box-shadow: none;
}

/* Secondary close button: clean and flat */
#close-payment-modal {
    background: transparent;
    color: #6b6b6b;
    border: 1px solid rgba(34,34,60,0.06);
    padding: 10px 16px;
    border-radius: 8px;
}

/* Layout for actions */
.modal-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

@media (max-width: 600px) {
    #payment-modal .modal-content { padding: 16px; }
    #payment-modal .payment-header .avatar { width: 48px; height: 48px; }
    .modal-actions { flex-direction: column-reverse; }
    #process-payment-btn { width: 100%; }
}


/* Simple Form Group Styles */
.modal .form-group {
    margin-bottom: 20px;
}

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

.modal .form-group p {
    background: #f8f9fa;
    padding: 12px 15px;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    margin: 0;
    font-size: 15px;
    color: #495057;
}

.modal input[type="number"] {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.modal input[type="number"]:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
}

/* Simple Modal Actions */
.modal-actions {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.modal-actions button {
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 100px;
}

#process-payment-btn {
    background: #28a745;
    color: white;
}

#process-payment-btn:hover {
    background: #218838;
}

#close-payment-modal {
    background: #6c757d;
    color: white;
}

#close-payment-modal:hover {
    background: #545b62;
}

/* Custom Dialog Styles */
.custom-dialog {
    max-width: 400px;
    padding: 0;
    overflow: hidden;
}

.dialog-header {
    background: #f8f9fa;
    padding: 20px 24px;
    border-bottom: 1px solid #e9ecef;
}

.dialog-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #495057;
}

.dialog-body {
    padding: 24px;
}

.dialog-body p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #6c757d;
}

.dialog-actions {
    padding: 16px 24px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.dialog-actions button {
    min-width: 80px;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dialog-actions .primary-button {
    background: #007bff;
    color: white;
}

.dialog-actions .primary-button:hover {
    background: #0056b3;
}

.dialog-actions .secondary-button {
    background: #6c757d;
    color: white;
}

.dialog-actions .secondary-button:hover {
    background: #545b62;
}

.dialog-actions .danger-button {
    background: #dc3545;
    color: white;
}

.dialog-actions .danger-button:hover {
    background: #c82333;
}

/* Mobile responsive styles for custom dialogs */
@media (max-width: 768px) {
    .custom-dialog {
        max-width: 90vw;
        margin: 0 16px;
    }
    
    .dialog-actions {
        flex-direction: column-reverse;
        gap: 8px;
    }
    
    .dialog-actions button {
        width: 100%;
        min-width: auto;
    }
    
    .dialog-header h3 {
        font-size: 16px;
    }
    
    .dialog-body p {
        font-size: 14px;
    }
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    width: 25px;
    height: 25px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 20px;
    color: #666;
    transition: color 0.2s ease;
}

.close:hover {
    color: #000;
}

/* History and Transaction Modals */
#customer-order-history, 
#payment-transaction-history,
#edit-customer-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    box-sizing: border-box;
}

#customer-order-history.modal--active,
#payment-transaction-history.modal--active,
#edit-customer-modal.modal--active {
    display: flex;
    opacity: 1;
}

#customer-order-history .modal-content,
#payment-transaction-history .modal-content {
    max-width: 800px;
    max-height: 85vh;
    overflow-y: auto;
}
#edit-customer-modal .modal-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}
#edit-customer-modal .modal-actions .main-actions button {
    flex: 1; /* Equal width for Save + Cancel */
    max-width: 150px;
}
#edit-customer-modal .modal-actions .danger-zone {
    margin-top: 16px;
    border-top: 1px solid #eee;
    padding-top: 16px;
    text-align: center;
}
#edit-customer-modal .modal-actions .danger-button {
    width: 100%;
    max-width: none;
}
#edit-customer-modal .modal-content {
    max-width: 400px;
    max-height: none;
    overflow: visible;
}

/* Enhanced table styles within modals */
.modal-content table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    margin-top: 15px;
    background: white;
}

.modal-content th {
    background: #f8f9fa;
    color: #2E7D32;
    font-weight: 600;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 2px solid #e9ecef;
}

.modal-content td {
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

.modal-content tr:hover {
    background-color: #f8f9fa;
}

/* Custom scrollbar for modals */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

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

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

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Form elements within modals */
.modal .form-group {
    margin-bottom: 16px;
}

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

.modal .input-wrapper {
    position: relative;
    margin-bottom: 5px;
}

.modal input {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fff;
}

.modal input:focus {
    border-color: #2E7D32;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
    outline: none;
}

.modal .input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #666;
    pointer-events: none;
}

/* Modal Actions */
.modal-actions {
    margin-top: 20px;
}

.modal-actions .main-actions {
    display: flex;
    gap: 10px;
}

.modal-actions .danger-zone {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #eee;
    text-align: center;
}

.modal-actions .danger-text {
    color: #dc3545;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.modal-actions .danger-button {
    background: #fff;
    color: #dc3545;
    border: 2px solid #dc3545;
    padding: 10px 16px;
    border-radius: 8px;
    width: 100%;
    transition: all 0.2s ease;
    font-size: 14px;
}

.modal-actions .danger-button:hover {
    background: #dc3545;
    color: #fff;
}

/* Message styling in modals */
.modal .message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    display: none;
}

.modal .message:not(:empty) {
    display: block;
}

.modal .message.success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.modal .message.error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

/* History Table Styles */
.history-table-container,
.transaction-table-container {
    margin: 20px -20px;
    padding: 0 20px;
    width: calc(100% + 40px);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
    background: #fff;
    scrollbar-width: thin;
    scrollbar-color: #4CAF50 #e0e0e0;
}

.history-table-container::-webkit-scrollbar,
.transaction-table-container::-webkit-scrollbar {
    height: 8px;
}

.history-table-container::-webkit-scrollbar-track,
.transaction-table-container::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 4px;
}

.history-table-container::-webkit-scrollbar-thumb,
.transaction-table-container::-webkit-scrollbar-thumb {
    background: #4CAF50;
    border-radius: 4px;
}

#customer-order-history .modal-content,
#payment-transaction-history .modal-content {
    max-width: 800px;
    padding: 20px;
}

#customer-order-history table,
#payment-transaction-history table {
    width: 100%;
    min-width: 600px;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
}

#customer-order-history th,
#payment-transaction-history th {
    position: sticky;
    top: 0;
    z-index: 1;
    text-align: left;
    padding: 12px 16px;
    background: #f8f9fa;
    border-bottom: 2px solid #e0e0e0;
    font-weight: 600;
    white-space: nowrap;
}

#customer-order-history td,
#payment-transaction-history td {
    padding: 12px 16px;
    border-bottom: 1px solid #e0e0e0;
    background: #fff;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .history-table-container,
    .transaction-table-container {
        margin: 15px -15px;
        padding: 0 15px;
        width: calc(100% + 30px);
    }
    
    #customer-order-history .modal-content,
    #payment-transaction-history .modal-content {
        padding: 15px;
    }
    
    #customer-order-history th,
    #payment-transaction-history th,
    #customer-order-history td,
    #payment-transaction-history td {
        padding: 10px 12px;
        font-size: 13px;
    }
}

/* Status column styles */
#customer-orders-table td:nth-child(4) {
    font-weight: 600;
}

#customer-orders-table td:nth-child(4)[data-status="PENDING"] {
    color: #F39C12;
}

#customer-orders-table td:nth-child(4)[data-status="IN_PROGRESS"] {
    color: #3498DB;
}

#customer-orders-table td:nth-child(4)[data-status="COMPLETED"] {
    color: #2ECC71;
}

/* Action column styles */
#customer-orders-table td:nth-child(5) button {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    background: #2E7D32;
    color: white;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

#customer-orders-table td:nth-child(5) button:hover {
    background: #1B5E20;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.15);
}

#customer-order-history-name,
#transaction-customer-name {
    color: #8E44AD;
    font-weight: 600;
    font-size: 1.1em;
    background: linear-gradient(120deg, #8E44AD, #9B59B6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 0px 1px rgba(142, 68, 173, 0.1);
}

/* Modal animations */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal.modal--active .modal-content {
    animation: modalFadeIn 0.3s ease forwards;
}

/* Invoice Modal Styles */
.invoice-content {
    max-width: 700px !important;
    min-width: 500px;
    width: 90vw;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f0f0f0;
}

.modal-header h3 {
    margin: 0 !important;
}

.modal-body {
    padding: 0 10px;
    overflow-x: hidden;
}

.business-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 12px;
}

.business-logo {
    font-size: 32px;
    color: #2E7D32;
}

.business-details h4 {
    margin: 0 0 4px 0;
    color: #2E7D32;
}

.business-details p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.receipt-details {
    margin-bottom: 24px;
    padding: 20px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
}

.receipt-details table {
    margin-top: 0 !important;
}

.receipt-actions {
    display: flex;
    justify-content: center;
    padding-top: 16px;
    border-top: 2px solid #f0f0f0;
    margin: 0 -10px;
    padding-left: 10px;
    padding-right: 10px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: #2E7D32;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    box-sizing: border-box;
}

.download-btn:hover {
    background: #1B5E20;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.15);
}

.btn-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.btn-text {
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Simple Mobile Responsive Styles */
@media (max-width: 768px) {
    .invoice-content {
        max-width: 95% !important;
        min-width: auto;
        width: 95vw;
    }
    
    .modal-body {
        padding: 0 5px;
    }
    
    .download-btn {
        padding: 8px 12px;
        font-size: 13px;
        gap: 4px;
    }
    
    .btn-text {
        display: none;
    }
    
    .download-btn::after {
        content: "Download";
        font-size: 13px;
    }
}

@media (max-width: 600px) {
    .modal {
        padding: 15px;
    }

    .modal-content {
        padding: 25px 20px;
        max-width: 95%;
    }

    .modal-content h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .modal-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .modal-actions button {
        width: 100%;
        min-width: auto;
    }

    .close {
        top: 12px;
        right: 15px;
        font-size: 18px;
    }
}

/* Desktop: make the payment modal larger and avoid inner scrollbars */

@media (min-width: 992px) {
    /* More specific selector to override earlier .modal--active rule */
    .modal--active #payment-modal .modal-content {
        max-width: 820px; /* increased to fit quick buttons */
        width: 820px;
        /* keep modal content within viewport but avoid inner scrollbars */
        max-height: calc(100vh - 80px);
        overflow: visible !important;
        padding: 22px 28px;
        box-sizing: border-box;
    }

    /* Reduce vertical spacing so content fits more compactly */
    .modal--active #payment-modal .payment-header { margin-bottom: 8px; }
    .modal--active #payment-modal .form-group { margin-bottom: 10px; }
    .modal--active #payment-modal .payment-total { margin: 6px 0 10px 0; }
    .modal--active #payment-modal .modal-actions { margin-top: 14px; }

    /* ensure modal centers vertically on large screens */
    .modal { align-items: center; }
}

/* Final override: ensure payment modal never shows an inner scrollbar on desktop */
#payment-modal.modal--active {
    /* make sure the modal overlay centers but allows enough room */
    align-items: center;
}
#payment-modal.modal--active .modal-content {
    /* keep modal content within viewport but avoid inner scrollbars */
    max-height: calc(100vh - 48px) !important;
    overflow: visible !important;
}

/* Hide webkit scrollbar specifically for payment modal content (visual fallback) */
#payment-modal.modal--active .modal-content::-webkit-scrollbar {
    display: none;
    width: 0px;
    height: 0px;
}

