/**
 * Frontend Styling para la tabla de precios
 
 .pricing-manager-frontend {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    margin: 20px 0;
}

.pricing-table-frontend {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.pricing-table-frontend thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-weight: 600;
}

.pricing-table-frontend th {
    padding: 16px 12px;
    text-align: center;
    border-bottom: 2px solid #667eea;
    font-size: 14px;
    font-weight: 600;
}

.pricing-table-frontend th.room-header {
    text-align: left;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.pricing-table-frontend th.season-header {
    position: relative;
}

.season-desc {
    display: block;
    font-size: 11px;
    font-weight: normal;
    opacity: 0.9;
    margin-top: 4px;
}

.pricing-table-frontend tbody tr {
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.2s ease;
}

.pricing-table-frontend tbody tr:hover {
    background-color: #f8f9fa;
}

.pricing-table-frontend tbody tr:last-child {
    border-bottom: none;
}

.pricing-table-frontend td {
    padding: 14px 12px;
    text-align: center;
}

.pricing-table-frontend td.room-name {
    text-align: left;
    font-weight: 600;
    background-color: #f8f9fa;
    border-right: 2px solid #e9ecef;
    min-width: 200px;
}

.room-desc {
    display: block;
    font-size: 12px;
    font-weight: normal;
    color: #6c757d;
    margin-top: 4px;
}

.price-value {
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
    color: #667eea;
    padding: 4px 8px;
    background-color: #f0f4ff;
    border-radius: 4px;
    min-width: 80px;
}

.price-empty {
    color: #999;
    background-color: #f0f0f0;
    font-style: italic;
    font-size: 13px;
    font-weight: normal;
}

// Responsive Design
@media (max-width: 768px) {
    .pricing-manager-frontend {
        margin: 15px -15px;
    }
    
    .pricing-table-frontend {
        font-size: 13px;
    }
    
    .pricing-table-frontend th,
    .pricing-table-frontend td {
        padding: 10px 8px;
    }
    
    .pricing-table-frontend th.room-header,
    .pricing-table-frontend td.room-name {
        min-width: 150px;
    }
    
    .price-value {
        font-size: 14px;
        min-width: 70px;
        padding: 3px 6px;
    }
    
    .season-desc,
    .room-desc {
        display: none;
    }
}

@media (max-width: 480px) {
    .pricing-table-frontend {
        font-size: 12px;
    }
    
    .pricing-table-frontend th,
    .pricing-table-frontend td {
        padding: 8px 6px;
    }
    
    .pricing-table-frontend th.room-header,
    .pricing-table-frontend td.room-name {
        min-width: 100px;
    }
    
    .price-value {
        font-size: 12px;
        min-width: 60px;
        padding: 2px 4px;
    }
}
*/

.table tbody tr td {
    border-left: 1px dashed #aaa;
    text-wrap: nowrap;
    padding: 0.5em;
}
.table tbody tr td:first-child {
    border-left: none;
    padding-left: 0;
}
.table thead tr th {
    padding: 0.5em 1em;
    text-align: center;
}
.table thead tr th:first-child {
    text-align: left;
}