.return-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.return-modal-content {
    background: #fff;
    padding: 20px;
    width: 400px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
}
.return-modal-content h3 {
    margin-top: 0;
}
.return-modal-content textarea {
    width: 100%;
    margin: 10px 0;
}
.return-modal-content button {
    margin: 5px;
}



/* Modal overlay */
.return-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Modal content box */
.return-modal-content {
    background-color: #fff;
    padding: 30px 25px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: fadeInScale 0.3s ease;
}

/* Modal header */
.return-modal-content h2,
.return-modal-content h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 20px;
    color: #333;
    text-align: center;
}

/* Close button */
.return-modal-close,
.close-return {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    color: #888;
    cursor: pointer;
    border: none;
    background: none;
}

/* Textarea styling */
.return-modal-content textarea {
    width: 100%;
    padding: 10px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    resize: vertical;
    margin-top: 5px;
    margin-bottom: 20px;
}

/* Buttons */
.return-modal-content button,
.return-modal-content .button {
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    margin-right: 10px;
    transition: background-color 0.2s ease;
}

.return-modal-content button:hover,
.return-modal-content .button:hover {
    background-color: #005f8d;
}

/* Animation */
@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

span.request-rejected {
    color: red;
    padding: 10px 10px 10px 10px;
    box-shadow: 0px 0px 5px #0000004d;
    border-radius: 10px;
    float: right;
}

span.request-approved {
        color: green;
    padding: 10px 10px 10px 10px;
    box-shadow: 0px 0px 5px #0000004d;
    border-radius: 10px;
    float: right;
}span.request-sent {
        padding: 10px 10px 10px 10px;
    box-shadow: 0px 0px 5px #0000004d;
    border-radius: 10px;
    float: right;
}

span.button_return_class {
    float: right;
}