/* Quote Modal Styling */
.pacproduct-quote-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pacproduct-quote-modal .modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.pacproduct-quote-modal h2 {
    margin-top: 0;
    color: #333;
    font-size: 24px;
    margin-bottom: 15px;
}

.pacproduct-quote-modal label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.pacproduct-quote-modal input[type="text"],
.pacproduct-quote-modal input[type="email"] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 15px;
}

.pacproduct-quote-modal button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    margin-right: 10px;
}

.pacproduct-quote-modal button#quote-cancel {
    background-color: #f1f1f1;
    color: #333;
}

.pacproduct-quote-modal button#send-quote-submit {
    background-color: #0073aa;
    color: #fff;
}

.pac-quote-success {
    padding: 15px;
    background-color: #e7f3e7;
    border-radius: 4px;
    color: #2a612a;
    margin-bottom: 15px;
    display: none;
}

/* Loading indicator */
.pac-quote-loading {
    display: none;
    text-align: center;
    margin: 15px 0;
}

.pac-quote-loading::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #0073aa;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Error message */
.pac-quote-error {
    padding: 15px;
    background-color: #f8e7e7;
    border-radius: 4px;
    color: #933;
    margin-bottom: 15px;
    display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pacproduct-quote-modal .modal-content {
        width: 95%;
        padding: 20px;
    }
} 