.wdrm-custom-request-form {
    border: 1px solid #ddd;
    padding: 20px;
    margin-top: 20px;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.wdrm-custom-request-form h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 15px;
}

.wdrm-custom-request-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #555;
}

.wdrm-custom-request-form input[type="text"],
.wdrm-custom-request-form input[type="email"],
.wdrm-custom-request-form input[type="number"],
.wdrm-custom-request-form input[type="file"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

.wdrm-submit-button {
    display: inline-block;
    width: 100%;
    background-color: #ff6600;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.wdrm-submit-button:hover {
    background-color: #e65c00;
}

.wdrm-success-message {
    color: #4caf50;
    font-weight: bold;
}

.wdrm-error-message {
    color: #f44336;
    font-weight: bold;
}