.popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 10000;
    text-align: center;
    min-width: 300px;
}
.popup h2 {
    margin-top: 0;
}
.popup .close-icon{
    position: absolute;
    right: -14px;
    top: -17px;
    padding: 3px;
    background: white;
    border-radius: 50%;
    width: 30px;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 0 2px #ccc;
    color: #d9534f;
    cursor:pointer;
}
.popup-container .popup p {
    color: #333;
}
/* Add this if you added the message next to the submit button */
.send-btn p {
    color: red; 
    font-size: 14px; 
    margin-left: 10px;
}

/* Quote page specific loader styles */
.quote-section .loader-container {
    background: rgba(255, 255, 255, 0.9);
}

.quote-section .loader-container .loader {
    border-top-color: var(--primary-color, #3452b6);
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
