.section-card {
    transition: all 0.3s ease;
}
.section-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.form-input {
    transition: all 0.2s ease;
}
.form-input:focus {
    transform: scale(1.02);
}
.progress-bar {
    transition: width 0.5s ease;
}

.estimate-value-box {
    background-color: #E5E7EB; /* gray-200 */
    color: #9CA3AF; /* gray-400 */
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 18px;
    filter: blur(4px);
    -webkit-filter: blur(4px);
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

/* Spinner Animation */
.emulation-spinner {
    width: 28px;
    height: 28px;
    border: 3px solid #d1d5db; /* gray-300 */
    border-top-color: #000; /* black */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Checkmark Icon */
.emulation-checkmark {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #000; /* black */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emulation-checkmark svg {
    width: 16px;
    height: 16px;
}

/* Container for the icon */
.emulation-icon-container {
    width: 36px; /* Adjust to align with the line */
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Style Overrides for Theme Compatibility */
#ge-estimator-form-wrapper .form-input,
#ge-estimator-form-wrapper select,
#ge-estimator-form-wrapper input[type="text"],
#ge-estimator-form-wrapper input[type="number"],
#ge-estimator-form-wrapper input[type="email"],
#ge-estimator-form-wrapper input[type="tel"] {
    height: 48px !important;
    padding: 0.5rem 1rem !important;
    line-height: 1.5 !important;
    vertical-align: middle !important;
    font-size: 1rem !important;
}

#ge-estimator-form-wrapper select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e") !important;
    background-position: right 0.5rem center !important;
    background-repeat: no-repeat !important;
    background-size: 1.5em 1.5em !important;
    padding-right: 2.5rem !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}
