.wcrq-quote-container {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px; /* Space between button and description */
}

.wcrq-request-quote-button {
    background-color: #ffffff; /* Lighter background to make it secondary */
    color: #009ee0; /* Darker text for contrast */
    border: 1px solid #009ee0;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    white-space: nowrap; /* Prevent text wrapping */
}

.wcrq-request-quote-button:hover {
    background-color: #acdeff; /* Slightly darker on hover */
    color: #009ee0;
}

.wcrq-quote-description {
    font-size: 14px;
    color: #666; /* Lighter text for secondary info */
    margin: 0;
    padding: 0;
}

.wcrq-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.wcrq-popup-content {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 500px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 5px;
    min-height: 300px;
}

.wcrq-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

/* Adjust spacing when elements are hidden */
.wcrq-quote-container {
    margin-bottom: 15px;
}