.wcrq-quote-container {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.wcrq-request-quote-button {
    padding: 7px 14px !important;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    white-space: nowrap;
    border: 1px solid;
}

.wcrq-request-quote-button:hover {
    transition: background-color 0.3s;
}

.wcrq-quote-description {
    font-size: 14px;
    color: #666;
    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;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wcrq-popup-content {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 5px;
    min-height: 300px;
    overflow-y: auto; /* Ensure form fits if long */
}

.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;
}