#request-price-popup {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

#request-price-popup .popup-field {
    margin-bottom: 15px;
}

#request-price-popup label {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
    color: #333;
}

#request-price-popup input,
#request-price-popup textarea {
    width: 100%;
    padding: 8px 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#request-price-popup textarea {
    resize: vertical;
}

#request-price-popup .popup-footer {
    text-align: right;
}

#submit-btn {
    background-color: #0073aa;
    color: white;
    padding: 10px 20px;
    font-size: 15px;
    border: none;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    min-width: 120px;
}

#submit-btn .btn-loader {
    width: 18px;
    height: 18px;
    border: 3px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -9px;
    animation: spin 1s linear infinite;
}

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

#submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}


#custom-flash-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4CAF50;
    color: #fff;
    padding: 12px 20px;
    z-index: 9999;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    font-size: 15px;
}
