/* Modal overlay */
#rrfw-modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

/* Modal content box */
.rrfw-modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    position: relative;
    border-radius: 4px;
}

/* Close button */
.rrfw-close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.rrfw-close:hover,
.rrfw-close:focus {
    color: black;
    text-decoration: none;
}

/* Form styles */
#rrfw-form textarea {
    width: 100%;
    height: 100px;
    padding: 5px;
    margin-top: 5px;
}

#rrfw-form input[type="file"],
#rrfw-form input[type="submit"] {
    margin-top: 5px;
}

.rrfw-refund-btn {
    background-color: #0071a1;
    color: #fff;
    border: none;
    padding: 4px 8px;
    cursor: pointer;
    border-radius: 3px;
}

.rrfw-refund-btn:hover {
    background-color: #005077;
}

