#wc-request-form {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

#wc-request-form-inner {
    position: relative;
}

#wc-request-form form {
    display: flex;
    flex-direction: column;
}

#wc-request-form input {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#wc-request-form button {
    padding: 10px;
    background: #FECC09;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#wc-request-close {
    background: none;
    border: none;
    font-size: 20px;
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
}