/* Simple Taxi Calculator - Clean Modern Style */

.simple-taxi-calc {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

.calc-header h2 {
    margin: 0 0 10px 0;
    color: #1a1a1a;
    font-size: 28px;
}

.calc-header p {
    margin: 0;
    color: #666;
    font-size: 16px;
}

.calc-inputs {
    margin-bottom: 25px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.location-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.location-input:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.calc-results {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.result-row:last-child {
    border-bottom: none;
}

.result-row .label {
    font-weight: 500;
    color: #555;
    font-size: 15px;
}

.result-row .value {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 16px;
}

.fare-row {
    background: #4CAF50;
    margin: 0 -20px -20px -20px;
    padding: 16px 20px;
    border-radius: 0 0 8px 8px;
}

.fare-row .label,
.fare-row .value {
    color: #ffffff;
}

.fare-value {
    font-size: 24px !important;
    font-weight: 700 !important;
}

#map {
    border: 2px solid #e0e0e0;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 600px) {
    .simple-taxi-calc {
        padding: 20px;
        margin: 20px;
    }

    .calc-header h2 {
        font-size: 24px;
    }

    .fare-value {
        font-size: 20px !important;
    }
}

/* Google autocomplete dropdown fix */
.pac-container {
    z-index: 9999 !important;
}
