/* Price Estimator Styling */

/* License Plate Input */
.license-plate-input {
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    font-weight: bold !important;
    font-size: 1.2rem !important;
}

/* Price Estimate Container */
.price-estimate-container {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Price Range Highlight */
.price-range-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: #28a745;
    text-align: center;
    padding: 20px;
}

.price-highlight {
    color: #28a745;
    font-weight: 900;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* Estimate Lists */
.estimate-list {
    list-style-type: none;
    padding-left: 0;
}

.estimate-list li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
}

.estimate-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Card Animations */
.card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
}

/* Feature Box Styling */
.feature-box {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

/* Progress Bar */
#progressBar {
    transition: width 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .price-range-value {
        font-size: 1.8rem;
    }

    .license-plate-input {
        font-size: 1rem !important;
    }
}

/* Dark Mode Support */
[data-bs-theme="dark"] .price-highlight,
.dark-theme .price-highlight {
    color: #5cb85c;
}

[data-bs-theme="dark"] .estimate-list li:before,
.dark-theme .estimate-list li:before {
    color: #5cb85c;
}

/* Loading Animation */
.loading-spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
