/* Fahrschule Pegasus - Price Table Styles */

.dilly-price-table {
    width: 100%;
    margin: 20px 0;
}

.dilly-price-table table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
}

.dilly-price-table thead {
    background-color: rgba(255, 215, 0, 0.8);
}

.dilly-price-table th {
    padding: 15px;
    text-align: left;
    color: #000;
    font-weight: bold;
    font-size: 14px;
}

.dilly-price-table tbody tr {
    border-bottom: 1px solid #404040;
}

.dilly-price-table tbody td {
    padding: 15px;
    color: #fff;
    font-size: 14px;
}

.dilly-price-table.calculation {
    margin-bottom: 30px;
}

.dilly-price-table.calculation thead {
    background-color: rgba(0, 0, 0, 0.8);
}

.dilly-price-table.calculation th {
    color: #000;
}

.dilly-price-table.calculation td {
    color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .dilly-price-table {
        overflow-x: auto;
    }
    
    .dilly-price-table table {
        min-width: 600px;
    }
}

