#vehicle-protection-calculator {
    font-family: Arial, sans-serif;
    max-width: 1200px;
    margin: 20px auto;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
}

.calculator-header {
    text-align: center;
    margin-bottom: 30px;
}

.calculator-header h3 {
    margin-bottom: 10px;
    color: #333;
}

.vehicle-counter input {
    width: 80px;
    padding: 8px;
    border: 2px solid #ddd;
    border-radius: 4px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}

.calculator-table {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.table-header, .option-row, .total-row, .cost-per-vehicle-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 15px;
    padding: 15px;
    align-items: center;
}

.table-header {
    background: #343a40;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
}

.option-row {
    border-bottom: 1px solid #eee;
}

.option-row.inactive {
    opacity: 0.5;
}

.ppf-section h4 {
    background: #f8f9fa;
    margin: 0;
    padding: 10px 15px;
    font-size: 14px;
    color: #666;
    border-bottom: 1px solid #eee;
}

.option-row input[type="number"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.option-row input[type="radio"] {
    margin-right: 8px;
}

.profit-display, .margin-display {
    font-weight: bold;
    color: #28a745;
}

.totals-section {
    background: #f8f9fa;
    border-top: 2px solid #dee2e6;
}

.total-row, .cost-per-vehicle-row {
    font-weight: bold;
    background: #e9ecef;
}

.annual-profit {
    text-align: center;
    margin: 30px 0;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 8px;
}

.annual-profit h2 {
    margin-bottom: 15px;
    font-size: 18px;
    letter-spacing: 1px;
}

.profit-amount {
    font-size: 32px;
    font-weight: bold;
    color: #ffd700;
}

.additional-profit-boxes {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.monthly-profit-box {
    flex: 1;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    color: white;
    border-radius: 8px;
}

.quarterly-profit-box {
    flex: 1;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    border-radius: 8px;
}

.monthly-profit-box h3,
.quarterly-profit-box h3 {
    margin-bottom: 10px;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: bold;
}

.profit-value {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.sublet-note {
    text-align: center;
    color: #666;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .table-header, .option-row, .total-row, .cost-per-vehicle-row {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .col-protection {
        font-weight: bold;
        margin-bottom: 10px;
    }
    
    .additional-profit-boxes {
        flex-direction: column;
    }
}