﻿.rr-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

#refundRequestModalContent {
    padding: 24px;
}

.rr-modal {
    background: #ffffff;
    width: 420px;
    max-width: 90%;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    font-family: -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
}

.rr-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.rr-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #dcfce7;
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.rr-header h3 {
    margin: 0;
    font-size: 17px;
    font-weight: 500;
}

.rr-header p {
    margin: 2px 0 0;
    font-size: 13px;
    color: #6b7280;
}

.rr-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.rr-method {
    text-align: left;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 14px;
    background: #ffffff;
    cursor: pointer;
}

    .rr-method h4 {
        margin: 0 0 4px;
        font-size: 15.3px;
        font-weight: 545;
        padding: 0px 10px;
    }

    .rr-method p {
        margin: 0;
        font-size: 12.5px;
        color: #6b7280;
        padding: 0px 10px;
        font-weight: 500;
    }

.rr-method-active {
    border-color: #0095da;
    background-color: #eaf6fd;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.rr-amount-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #EFF6FF;
    height: 52px;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 18px;
    font-size: 14px;
}

.rr-amount {
    color: #16a34a;
    font-weight: 700;
    font-size: 16px;
}

.rr-submit {
    width: 100%;
    padding: 12px;
    background-color: #0066B3;
    ;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    font-size: 14px;
}

    .rr-submit:hover {
        background-color: #0056a3;
        transition: background-color 0.3s ease;
    }
