/**
 * Instant Quote Widget Styles
 *
 * @since      1.0.0
 * @package    SeekMake_Instant_Quote
 */

/* Instant Quote Specific Styles */
.seekmake-quote-container {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

/* Loading state for instant quote */
.seekmake-quote-loading {
    text-align: center;
    padding: 60px 20px;
}

.seekmake-quote-loading::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #2271b1;
    border-radius: 50%;
    animation: seekmake-spin 1s linear infinite;
}

/* Error state */
.seekmake-error {
    background: #fef7f7;
    border-left: 4px solid #dc3232;
    padding: 12px 16px;
    margin: 20px 0;
    color: #dc3232;
    font-weight: 500;
}
