/* Стили для модального окна прайса услуг */
.price-table-container {
    margin: 20px 0;
    overflow-x: auto;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    font-size: 14px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.price-table th {
    background-color: var(--red-accent);
    color: white;
    padding: 12px 8px;
    text-align: left;
    font-weight: 600;
    border: 1px solid #ddd;
}

.price-table th:first-child {
    width: 3%; 
    text-align: center; 
}

.price-table th:last-child {
    width: 10%; 
}

.price-table td {
    padding: 12px 8px;
    border: 1px solid #ddd;
    vertical-align: top;
    line-height: 1.4;
}

.price-table td:first-child {
    text-align: center; 
    width: 3%; 
    font-weight: 600;
}

.price-table td:nth-child(2) {
    font-weight: 600; 
    color: var(--dark-gray);
}

.price-table td:last-child {
    width: 10%; 
    text-align: center; 
}

.price-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.price-table tbody tr:hover {
    background-color: #e9ecef;
}

.price-table ul {
    margin: 8px 0;
    padding-left: 16px;
}

.price-table li {
    margin-bottom: 4px;
    line-height: 1.3;
}

.price-table strong {
    color: var(--red-accent);
    font-size: 15px;
}

.price-note {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 6px;
    padding: 12px 15px;
    margin: 15px 0;
    font-size: 14px;
}

.price-note strong {
    color: var(--red-accent);
}

/* Адаптивность для таблицы прайса */
@media (max-width: 1024px) {
    .price-table {
        font-size: 13px;
    }
    
    .price-table th,
    .price-table td {
        padding: 10px 6px;
    }
}

@media (max-width: 768px) {
    .price-table-container {
        margin: 15px -10px;
    }
    
    .price-table {
        font-size: 12px;
        min-width: 700px;
    }
    
    .price-table th,
    .price-table td {
        padding: 8px 4px;
    }
    
    .price-table ul {
        padding-left: 12px;
    }
    
    .price-table li {
        font-size: 11px;
    }
}