.mpm-prices-container {
    font-family: inherit;
    margin: 20px 0;
}

/* Prices Table */
.mpm-prices-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.mpm-prices-table tbody tr {
    border-bottom: 1px solid #e5e5e5;
    transition: background-color 0.2s;
}

.mpm-prices-table tbody tr:hover {
    background-color: #f9f9f9;
}

.mpm-prices-table tbody tr:last-child {
    border-bottom: none;
}

.mpm-prices-table td {
    padding: 15px 10px;
}

.mpm-service-name {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

.mpm-service-price {
    text-align: right;
    font-weight: 600;
    color: #0073aa;
    font-size: 15px;
    white-space: nowrap;
    min-width: 150px;
}

/* Accordion Styles */
.mpm-accordion {
    margin-top: 20px;
}

.mpm-accordion-item {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s;
}

.mpm-accordion-item:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.mpm-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    background: #f8f9fa;
    border-bottom: 1px solid #e5e5e5;
    transition: background-color 0.2s;
    user-select: none;
}

.mpm-accordion-header:hover {
    background: #e8f4f8;
}

.mpm-accordion-item.mpm-active .mpm-accordion-header {
    background: #e8f4f8;
    border-bottom-color: #0073aa;
}

.mpm-accordion-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.mpm-accordion-icon {
    display: flex;
    align-items: center;
    color: #0073aa;
    transition: transform 0.3s ease;
}

.mpm-accordion-icon svg {
    transition: transform 0.3s ease;
}

.mpm-accordion-content {
    display: none;
    padding: 0;
}

.mpm-accordion-content .mpm-prices-table {
    margin-bottom: 0;
}

.mpm-accordion-content .mpm-prices-table tbody tr:first-child td {
    padding-top: 20px;
}

.mpm-accordion-content .mpm-prices-table tbody tr:last-child td {
    padding-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mpm-prices-table td {
        display: block;
        width: 100%;
        padding: 10px;
    }
    
    .mpm-service-name {
        border-bottom: 1px dashed #e5e5e5;
        padding-bottom: 10px;
    }
    
    .mpm-service-price {
        text-align: left;
        padding-top: 10px;
        font-size: 16px;
    }
    
    .mpm-accordion-header {
        padding: 15px;
    }
    
    .mpm-accordion-header h3 {
        font-size: 16px;
    }
}

/* Print Styles */
@media print {
    .mpm-accordion-item {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #000;
    }
    
    .mpm-accordion-content {
        display: block !important;
    }
    
    .mpm-accordion-icon {
        display: none;
    }
}
