
    /* Popup Base Styles */
/*.popup-container {*/
/*    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);*/
/*    border-radius: 12px;*/
/*    padding: 20px;*/
/*    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);*/
/*    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
/*    min-width: 350px;*/
/*    max-width: 450px;*/
/*}*/

/* Header Styles */
.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
}

.popup-title {
    margin: 0;
    color: #2c3e50;
    font-size: 16px;
    font-weight: 600;
}

.popup-date-badge {
    font-size: 12px;
    color: #7f8c8d;
    background: rgba(255, 255, 255, 0.7);
    padding: 2px 8px;
    border-radius: 10px;
}

/* Content Styles */
.popup-description {
    margin: 0 0 10px 0;
    color: #34495e;
    font-size: 14px;
}

.popup-section-title {
    margin: 0 0 15px 0;
    color: #2c3e50;
    font-size: 14px;
    font-weight: 500;
}

.popup-description-large {
    margin: 0 0 15px 0;
    color: #34495e;
    font-size: 14px;
    line-height: 1.4;
}

/* Table Styles */
.popup-table-container {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.popup-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.popup-table thead tr {
    background: rgba(142, 68, 173, 0.1);
}

.popup-table th {
    padding: 12px 8px;
    text-align: left;
    color: #8e44ad;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popup-table th.text-right {
    text-align: right;
}

.popup-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.5);
}

.popup-table tbody tr:nth-child(odd) {
    background: rgba(142, 68, 173, 0.05);
}

.popup-table td {
    padding: 10px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}



.popup-table .car-name {
    color: #2c3e50;
    font-weight: 500;
}

.popup-table .car-location {
    color: #7f8c8d;
    font-weight: 500;
}

.popup-table .car-price {
    color: #8e44ad;
    font-weight: 600;
    text-align: right;
}

/* Cost Breakdown Styles */
.popup-cost-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.popup-cost-row:nth-child(even) {
    background: rgba(255, 255, 255, 0.5);
}

.popup-cost-row:nth-child(odd) {
    background: rgba(142, 68, 173, 0.05);
}

.popup-cost-label {
    color: #2c3e50;
    font-weight: 500;
    font-size: 13px;
}

.popup-cost-value {
    color: #8e44ad;
    font-weight: 600;
    font-size: 13px;
}

/* Summary Styles */
.popup-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.popup-summary-default {
    background: rgba(142, 68, 173, 0.1);
    border-left: 4px solid #8e44ad;
}

.popup-summary-add-sub {
    background: rgba(46, 204, 113, 0.1);
    border-left: 4px solid #2ecc71;
}

.popup-summary-your-value {
    background: rgba(231, 76, 60, 0.1);
    border-left: 4px solid #e74c3c;
}

.popup-summary-label {
    color: #2c3e50;
    font-weight: 500;
    font-size: 14px;
}

.popup-summary-value {
    font-weight: 700;
    font-size: 16px;
}

.popup-summary-default .popup-summary-value {
    color: #8e44ad;
}

.popup-summary-add-sub .popup-summary-value {
    color: #27ae60;
}

.popup-summary-your-value .popup-summary-value {
    color: #c0392b;
}

/* Message/Alert Styles */
.popup-message {
    background: rgba(52, 152, 219, 0.1);
    border-left: 4px solid #3498db;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.popup-message p {
    margin: 0;
    color: #2c3e50;
    font-weight: 600;
    font-size: 14px;
}

/* Divider Styles */
.popup-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(142, 68, 173, 0.3), transparent);
    margin: 15px 0;
}

/* Loading and Error States */
.popup-loading {
    padding: 20px;
    text-align: center;
    color: #7f8c8d;
}

.popup-error {
    padding: 20px;
    text-align: center;
    color: #e74c3c;
}

.popup-container{
    overflow-y: auto;
}