/* Custom styles for the moving company quote calculator */

/* Body and general styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

.container {
    max-width: 1200px;
}

/* Header styles */
.site-header {
    background-color: #343a40;
    color: white;
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.site-title {
    font-weight: 700;
    font-size: 1.8rem;
}

/* Form styles */
.form-card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.form-card .card-header {
    background-color: #007bff;
    color: white;
    font-weight: 600;
}

.form-label {
    font-weight: 500;
}

/* Results panel */
.results-panel {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

/* Logic inspector */
.logic-inspector {
    background-color: #f1f1f1;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

/* Quote options cards */
.option-card {
    transition: transform 0.2s;
}

.option-card:hover {
    transform: translateY(-5px);
}

.card-header {
    font-weight: 600;
}

/* Recommended option highlight */
.recommended {
    border: 2px solid #28a745;
}

.recommended .card-header {
    background-color: #28a745;
    color: white;
}

/* Loading spinner */
.loading-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem;
}

/* Alerts styling */
.alerts-container {
    margin-bottom: 1.5rem;
}

/* Footer styles */
.footer {
    background-color: #343a40;
    color: white;
    padding: 1.5rem 0;
    margin-top: 3rem;
}

.footer a {
    color: #a8d0ff;
}

/* Google Places Autocomplete styling */
.pac-container {
    z-index: 1051 !important;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    border: 1px solid #ddd;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.pac-item {
    padding: 8px 10px;
    font-size: 14px;
    cursor: pointer;
}

.pac-item:hover {
    background-color: #f8f9fa;
}

.pac-item-selected, .pac-item-selected:hover {
    background-color: #e9ecef;
}

.pac-icon {
    margin-right: 10px;
}

.pac-item-query {
    font-size: 14px;
    font-weight: 500;
    color: #343a40;
}

.pac-matched {
    font-weight: 700;
    color: #007bff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .site-title {
        font-size: 1.5rem;
    }
    
    .form-card, .results-panel {
        margin-bottom: 1rem;
    }
}
