.delivery-estimator-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.estimator-form h3 {
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.address-input, #vehicle_type {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

.address-suggestions {
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    max-height: 200px;
    overflow-y: auto;
    display: none;
}

.address-suggestion-item {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.address-suggestion-item:hover {
    background: #f0f0f0;
}

.calculate-btn, .order-btn {
    width: 100%;
    padding: 15px;
    background: #007cba;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
}

.calculate-btn:hover, .order-btn:hover {
    background: #005a87;
}

.results-container {
    margin-top: 30px;
    padding: 20px;
    background: white;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.distance-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.price-info h4 {
    color: #28a745;
    font-size: 28px;
    margin-bottom: 10px;
    text-align: center;
}

.price-info h4 span {
    font-weight: bold;
}

.disclaimer {
    font-size: 12px;
    color: #666;
    font-style: italic;
    margin-top: 5px;
}

.map-container {
    margin: 20px 0;
    border-radius: 5px;
    overflow: hidden;
}

.order-btn {
    background: #28a745;
    margin-top: 20px;
}

.order-btn:hover {
    background: #218838;
}

/* Add these styles to your existing CSS */

.price-breakdown {
    background: #f8f9fa;
    border-left: 4px solid #007cba;
    padding: 15px;
    margin: 15px 0;
    border-radius: 4px;
}

.price-breakdown h5 {
    margin-top: 0;
    color: #007cba;
    font-size: 16px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.price-item.total {
    font-weight: bold;
    color: #28a745;
    font-size: 18px;
    border-bottom: 2px solid #28a745;
    padding-top: 10px;
    margin-top: 5px;
}

.rush-hour-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
    padding: 10px;
    border-radius: 4px;
    margin: 10px 0;
    font-size: 14px;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #f5c6cb;
    margin-bottom: 20px;
}