/**
 * Race Register UI v2.0.0 FİNAL (Dark Mode Teması)
 *
 * Bu stil sayfası, 'race-register' eklentisinin tüm frontend
 * çıktılarını "dark mode" temasına uyarlar.
 *
 * İÇİNDEKİLER:
 * 1. KAYIT FORMU (rr-register)
 * 2. KAYIT LİSTESİ (rr-roster)
 * 3. GİRİŞ FORMU (loginform)
 * 4. HESABIM PANOSU (rr-dashboard)
 * 5. POPUP VE ÖDEME KUTUSU (rr-popup, rr-payment-info-box)
 */

/*
 * -------------------------------------------
 * 1. KAYIT FORMU (REGISTER) STİLLERİ
 * -------------------------------------------
 */

/* --- 1.1 Formun Ana Konteyneri --- */
.rr-register {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #1f1f1f;
    border: 1px solid #3a3a3a;
    color: #f0f0f0;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    max-width: 800px;
    margin: 30px auto;
    box-sizing: border-box;
}

/* --- 1.2 Form Satır ve Sütun Düzeni --- */
.rr-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 24px;
    gap: 24px;
}
.rr-col {
    flex: 1;
    min-width: 250px;
    box-sizing: border-box;
}

/* --- 1.3 Etiketler (Labels) --- */
.rr-col > label:first-child,
.rr-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
    color: #e0e0e0;
}
.rr-form label .req {
    color: #F44336;
    margin-left: 2px;
    font-weight: 700;
}
.rr-form label a {
    color: #ea580c;
    font-weight: 600;
    text-decoration: none;
}
.rr-form label a:hover {
    text-decoration: underline;
}


/* --- 1.4 Giriş Alanları (Inputs) --- */
.rr-form input[type="text"],
.rr-form input[type="email"],
.rr-form input[type="date"],
.rr-form input[type="password"],
.rr-form select {
    width: 100%;
    padding: 12px 14px;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-size: 15px;
    line-height: 1.5;
    border-radius: 6px;
    background-color: #1e1e1e;
    border: 1px solid #5c4a3b;
    color: #ffffff;
}
.rr-form input::placeholder { color: #888; }
.rr-form input[type="text"]:focus,
.rr-form input[type="email"]:focus,
.rr-form input[type="date"]:focus,
.rr-form input[type="password"]:focus,
.rr-form select:focus {
    border-color: #ea580c; /* Turuncu */
    box-shadow: 0 0 0 1px #ea580c;
    outline: none;
}

/* --- 1.5 Özel Alanlar (Radio, Checkbox, Notlar) --- */
.rr-col small {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.4;
    color: #999;
}
.rr-col label:has(input[type="radio"]),
.rr-col label:has(input[type="checkbox"]) {
    font-weight: 400;
    display: inline-block;
    margin-bottom: 0;
    margin-top: 5px;
    cursor: pointer;
    font-size: 15px;
    color: #e0e0e0;
    line-height: 1.5;
}
.rr-col input[type="radio"],
.rr-col input[type="checkbox"] {
    margin-right: 8px;
    vertical-align: middle;
    width: auto;
    accent-color: #ea580c; /* Turuncu */
}
.rr-col:has(input[name="gender"]) > label:first-child,
.rr-col:has(input[name="agree_rules"]) > label:first-child {
    margin-bottom: 13px;
}

/* --- 1.6 Eylem Butonları (Submit) --- */
.rr-actions {
    margin-top: 30px;
    border-top: 1px solid #3a3a3a;
    padding-top: 24px;
    text-align: right;
}
.rr-actions button[type="submit"] {
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    width: 100%;
    background-color: #ea580c;
    color: #ffffff;
}
.rr-actions button[type="submit"]:hover { background-color: #c2410c; }
.rr-actions button[type="submit"]:active { transform: scale(0.98); }

/* --- 1.7 Hata ve Başarı Mesajları (Genel) --- */
.rr-message {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 15px;
    border: 1px solid transparent;
}
.rr-message.success,
.rr-alert-success {
    background: #1a3a1f;
    border-color: #2e6b30;
    color: #a7f3d0;
}
.rr-message.error,
.rr-alert-error {
    background: #4a1c1c;
    border-color: #b71c1c;
    color: #fecaca;
}
.rr-message ul,
.rr-alert-error ul,
.rr-alert-success ul {
    margin: 0;
    padding-left: 20px;
}

/* --- 1.8 Mobil Uyumluluk (Form) --- */
@media (max-width: 640px) {
    .rr-register {
        padding: 20px 15px;
        box-shadow: none;
        border: none;
        margin-top: 0;
    }
    .rr-row {
        gap: 0;
        margin-bottom: 0;
    }
    .rr-col {
         flex-basis: 100%; 
         min-width: 0;
         margin-bottom: 24px;
    }
    .rr-actions {
        text-align: center;
    }
}
@media (min-width: 641px) {
    .rr-actions button[type="submit"] {
        width: auto; /* Kendi genişliğine dönsün */
    }
}


/*
 * -------------------------------------------
 * 2. KAYIT LİSTESİ (ROSTER) STİLLERİ
 * -------------------------------------------
 */

/* --- 2.1 Liste Ana Konteyneri --- */
.rr-roster {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #1f1f1f;
    border: 1px solid #3a3a3a;
    color: #f0f0f0;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    max-width: 800px;
    margin: 30px auto;
    box-sizing: border-box;
}

/* --- 2.2 Liste Başlığı (h3) --- */
.rr-roster h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 24px;
    border-bottom: 1px solid #3a3a3a;
    padding-bottom: 16px;
}

/* --- 2.3 Liste Alt Metni (Kayıt yoksa) --- */
.rr-roster p {
    color: #ccc;
    font-size: 16px;
    text-align: center;
    padding: 20px 0;
}

/* --- 2.4 Tablo Sarmalayıcı (Mobil için) --- */
.rr-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 6px;
    border: 1px solid #3a3a3a;
}

/* --- 2.5 Tablonun Kendisi (.rr-table) --- */
.rr-roster .rr-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    min-width: 500px;
    border: none;
}
.rr-roster .rr-table th,
.rr-roster .rr-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #3a3a3a;
}

/* --- 2.6 Tablo Başlığı (Header) --- */
.rr-roster .rr-table thead th {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ea580c; /* Turuncu */
    background-color: #2a2a2a;
    border-bottom: 2px solid #ea580c;
}
.rr-roster .rr-table thead th:first-child { border-top-left-radius: 6px; }
.rr-roster .rr-table thead th:last-child { border-top-right-radius: 6px; }

/* --- 2.7 Tablo İçeriği (Body) --- */
.rr-roster .rr-table tbody tr {
    transition: background-color 0.2s ease;
}
.rr-roster .rr-table tbody tr:hover {
    background-color: #2c2c2c; /* Hover */
}
.rr-roster .rr-table tbody td {
    color: #e0e0e0;
}
.rr-roster .rr-table tbody tr:last-child td {
    border-bottom: none;
}
.rr-roster .rr-table tbody td:first-child {
    color: #ffffff;
    font-weight: 600;
}

/* --- 2.8 Sayfalama (Pagination) --- */
.rr-pagination {
    margin-top: 24px;
    text-align: center;
}
.rr-pagination a {
    color: #ccc;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 4px;
    margin: 0 2px;
    transition: background-color 0.2s ease, color 0.2s ease;
    font-size: 15px;
    display: inline-block;
    font-weight: 600;
}
.rr-pagination a:hover {
    background-color: #3a3a3a;
    color: #ffffff;
}
.rr-pagination a.current {
    background-color: #ea580c;
    color: #ffffff;
}

/* --- 2.9 Mobil (Roster) --- */
@media (max-width: 640px) {
    .rr-roster {
        padding: 20px 0px;
        border: none;
        box-shadow: none;
        background: none;
    }
    .rr-roster h3 {
        padding-left: 15px;
        padding-right: 15px;
        border-bottom: none;
        font-size: 20px;
    }
    .rr-table-wrapper {
        border-radius: 0;
        border-right: none;
        border-left: none;
    }
    .rr-pagination a {
        padding: 6px 10px;
        font-size: 14px;
    }
}


/*
 * -------------------------------------------
 * 3. GİRİŞ FORMU (LOGIN) STİLLERİ
 * -------------------------------------------
 */

/* --- 3.1 Form Konteyneri (Formun kendisi) --- */
#loginform {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #1f1f1f;
    border: 1px solid #3a3a3a;
    color: #f0f0f0;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    max-width: 500px;
    margin: 30px auto 0;
    box-sizing: border-box;
}
#loginform p { margin-bottom: 20px; }
#loginform label {
    display: block; font-weight: 600; margin-bottom: 8px;
    font-size: 14px; color: #e0e0e0;
}
#loginform input[type="text"],
#loginform input[type="password"] {
    width: 100%; padding: 12px 14px; box-sizing: border-box;
    font-size: 15px; line-height: 1.5; border-radius: 6px;
    background-color: #1e1e1e; border: 1px solid #5c4a3b;
    color: #ffffff; transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
#loginform input[type="text"]:focus,
#loginform input[type="password"]:focus {
    border-color: #ea580c; box-shadow: 0 0 0 1px #ea580c; outline: none;
}
#loginform .login-remember label {
    font-weight: 400; font-size: 15px;
    color: #e0e0e0; display: inline-block;
}
#loginform .login-remember input[type="checkbox"] {
    margin-right: 8px; vertical-align: middle;
    accent-color: #ea580c; width: auto;
}
#loginform .login-submit input[type="submit"] {
    padding: 14px 28px; border: none; border-radius: 6px;
    font-size: 16px; font-weight: 700; cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    width: 100%; background-color: #ea580c; color: #ffffff;
}
#loginform .login-submit input[type="submit"]:hover { background-color: #c2410c; }
#loginform .login-submit input[type="submit"]:active { transform: scale(0.98); }
#loginform input#wp-submit.button-primary {
    background: #ea580c; border-color: #ea580c;
    box-shadow: none; text-shadow: none;
}
#loginform input#wp-submit.button-primary:hover {
    background: #c2410c; border-color: #c2410c;
}
#loginform + p { /* "Şifremi Unuttum" linki */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 14px; text-align: center; color: #999;
    background: #1f1f1f; border: 1px solid #3a3a3a; border-top: none;
    padding: 20px 32px 24px; border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px; box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    max-width: 500px; margin: 0 auto 30px;
}
#loginform + p a { color: #ea580c; font-weight: 600; text-decoration: none; }
#loginform + p a:hover { text-decoration: underline; }

@media (max-width: 560px) {
    #loginform {
        max-width: 100%; padding: 24px; border: none;
        box-shadow: none; margin-top: 15px;
    }
    #loginform + p {
        max-width: 100%; border: none; box-shadow: none;
        background: none; padding-top: 0; margin-top: 10px; color: #e0e0e0;
    }
}


/*
 * -------------------------------------------
 * 4. HESABIM (DASHBOARD) STİLLERİ (YENİ EKLENDİ)
 * -------------------------------------------
 */

/* --- 4.1 Ana Konteyner --- */
.rr-dashboard {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #1f1f1f;
    border: 1px solid #3a3a3a;
    color: #f0f0f0;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    max-width: 800px;
    margin: 30px auto;
    box-sizing: border-box;
}

/* --- 4.2 Başlıklar ve Metinler --- */
.rr-dashboard h3, 
.rr-dashboard h4 {
    color: #ffffff;
    font-weight: 600;
}
.rr-dashboard h3 { /* "Başvurunuz" */
    font-size: 22px;
    margin-top: 0;
    border-bottom: 1px solid #3a3a3a;
    padding-bottom: 16px;
    margin-bottom: 20px;
}
.rr-dashboard h4 { /* "Dekont Yükleme" vb. */
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #e0e0e0;
}
.rr-dashboard p {
    color: #e0e0e0;
    font-size: 15px;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 1em;
}
.rr-dashboard p strong {
    color: #ffffff;
}
.rr-dashboard p small {
    color: #999;
    font-size: 13px;
    display: block;
    margin-top: 15px;
}
.rr-dashboard hr {
    border: none;
    border-top: 1px solid #3a3a3a;
    margin: 30px 0;
}

/* --- 4.3 Başvuru Bilgi Tablosu (Dikey) --- */
.rr-dashboard .rr-table {
    width: 100%;
    border: 1px solid #3a3a3a;
    border-radius: 6px;
    border-collapse: collapse; /* Önemli */
    overflow: hidden; /* Köşeler için */
    margin-top: 25px;
}
.rr-dashboard .rr-table th,
.rr-dashboard .rr-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #3a3a3a;
    font-size: 15px;
    vertical-align: middle;
}
.rr-dashboard .rr-table tr:last-child th,
.rr-dashboard .rr-table tr:last-child td {
    border-bottom: none;
}
.rr-dashboard .rr-table th { /* Sol taraf */
    background-color: #2a2a2a;
    color: #ccc;
    font-weight: 600;
    width: 30%;
    min-width: 120px;
}
.rr-dashboard .rr-table td { /* Sağ taraf */
    color: #ffffff;
    font-weight: 500;
}

/* --- 4.4 Başvuru Durum Etiketleri --- */
.rr-dashboard .rr-table td strong[class*="status-"] {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    border: 1px solid transparent;
}
.rr-dashboard .rr-table td strong.status-pending {
    color: #f59e0b; /* Sarı/Turuncu */
    background-color: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
}
.rr-dashboard .rr-table td strong.status-approved {
    color: #22c55e; /* Yeşil */
    background-color: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
}
.rr-dashboard .rr-table td strong.status-rejected {
    color: #ef4444; /* Kırmızı */
    background-color: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
}

/* --- 4.5 Dosya Yükleme Formları --- */
.rr-dashboard form {
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 6px;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}
/* Birden fazla form varsa (sil/yenile) */
.rr-form-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    background: #2a2a2a; /* Arka planı aynı yap */
    border: 1px solid #3a3a3a;
    border-radius: 6px;
    padding: 20px;
}
.rr-form-group form.rr-inline {
    flex-grow: 1; /* Esnet */
    background: none;
    border: none;
    padding: 0;
}
/* Silme formu (sadece buton) */
.rr-form-group form.rr-form-delete {
    flex-grow: 0; /* Büyümesin */
}

.rr-dashboard form input[type="file"] {
    color: #ccc;
    background-color: #1e1e1e;
    border: 1px solid #5c4a3b;
    border-radius: 6px;
    padding: 10px;
    flex-grow: 1;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%; /* Mobil'de ve tek formda tam genişlik */
}
.rr-dashboard form.rr-inline input[type="file"] {
    width: auto; /* Yan yana formda otomatik genişlik */
}

.rr-dashboard form input[type="file"]:focus {
    border-color: #ea580c;
    box-shadow: 0 0 0 1px #ea580c;
    outline: none;
}
.rr-dashboard form input[type="file"]::file-selector-button {
    background-color: #5c4a3b;
    color: #ffffff;
    border: none;
    padding: 10px 14px;
    border-radius: 4px;
    margin-right: 12px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.rr-dashboard form input[type="file"]::file-selector-button:hover {
    background-color: #ea580c;
}

/* Yükle Butonu */
.rr-dashboard form button[type="submit"] {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease;
    background-color: #ea580c;
    color: #ffffff;
}
.rr-dashboard form button[type="submit"]:hover { background-color: #c2410c; }

/* Sil Butonu */
.rr-dashboard form.rr-form-delete button[type="submit"] {
    background-color: #b91c1c; /* Kırmızı */
}
.rr-dashboard form.rr-form-delete button[type="submit"]:hover {
    background-color: #991b1b;
}

/* Zaten Yüklü Dosya Bilgisi */
.rr-file-info {
    background: #1a3a1f; /* Başarı yeşili */
    border: 1px solid #2e6b30;
    color: #a7f3d0;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 500;
}
.rr-file-info em { font-style: normal; font-weight: 700; }
.rr-file-info a { color: #ffffff; font-weight: 700; text-decoration: underline; }
.rr-file-info a:hover { text-decoration: none; }


/* --- 4.6 Mobil (Dashboard) --- */
@media (max-width: 640px) {
    .rr-dashboard {
        padding: 20px 0px;
        border: none;
        box-shadow: none;
        margin-top: 0;
        background: none;
    }
    .rr-dashboard h3 {
        padding-left: 15px;
        padding-right: 15px;
    }
    .rr-dashboard h4 {
        padding-left: 15px;
        padding-right: 15px;
    }

    .rr-dashboard .rr-table {
        border-radius: 0;
        border-right: none;
        border-left: none;
    }
    .rr-dashboard .rr-table th,
    .rr-dashboard .rr-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    .rr-dashboard .rr-table th {
        border-bottom: 1px dashed #3a3a3a;
        background-color: transparent;
        color: #ea580c;
        padding-bottom: 5px;
    }
    .rr-dashboard .rr-table td {
        padding-top: 5px;
        padding-bottom: 15px;
    }
    .rr-dashboard .rr-table tr:not(:last-child) td {
         border-bottom: 1px solid #3a3a3a;
    }
    .rr-dashboard .rr-table tr:last-child td {
        padding-bottom: 5px;
    }

    .rr-dashboard form,
    .rr-form-group {
        padding: 15px;
        background: #1f1f1f;
        border: 1px solid #3a3a3a;
        margin-left: 15px;
        margin-right: 15px;
        width: auto;
    }
    .rr-dashboard form input[type="file"],
    .rr-dashboard form.rr-inline input[type="file"] {
        width: 100%;
    }
    .rr-dashboard form button[type="submit"] {
        width: 100%;
    }
}


/*
 * -------------------------------------------
 * 5. POPUP VE ÖDEME KUTUSU STİLLERİ
 * -------------------------------------------
 */

/* --- 5.1 Popup (Modal) Arka Planı --- */
.rr-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Koyu overlay */
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* --- 5.2 Popup İçerik Kutusu --- */
.rr-popup-inner {
    background: #1f1f1f;
    color: #f0f0f0;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #3a3a3a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    max-width: 600px;
    width: 100%;
    box-sizing: border-box;
    max-height: 90vh;
    overflow-y: auto;
}
.rr-popup-inner h3 {
    color: #ea580c;
    font-size: 22px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 15px;
}
.rr-popup-inner p {
    font-size: 16px;
    line-height: 1.6;
    color: #e0e0e0;
}
.rr-popup-inner ol.rr-popup-steps {
    margin: 20px 0;
    padding-left: 25px;
}
.rr-popup-inner ol.rr-popup-steps li {
    font-size: 15px;
    color: #ccc;
    margin-bottom: 10px;
    line-height: 1.5;
}
.rr-popup-inner ol.rr-popup-steps li strong { color: #ffffff; }
.rr-popup-inner hr {
    border: none;
    border-top: 1px solid #3a3a3a;
    margin: 25px 0;
}

/* --- 5.3 Kapat Butonu --- */
.rr-popup-inner button,
.rr-popup-inner .rr-popup-close-btn {
    width: 100%;
    margin-top: 20px;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease;
    background-color: #3a3a3a;
    color: #ffffff;
}
.rr-popup-inner button:hover,
.rr-popup-inner .rr-popup-close-btn:hover {
    background-color: #555;
}

/* --- 5.4 Ödeme Bilgi Kutusu (payment-info.php) --- */
.rr-payment-info-box {
    background-color: #2a2a2a;
    border: 1px dashed #ea580c;
    padding: 24px;
    border-radius: 8px;
    margin: 25px 0;
}
.rr-payment-info-box h4 {
    color: #ea580c;
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 700;
}
.rr-payment-info-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #e0e0e0;
}
.rr-payment-info-box p strong {
    color: #ffffff;
    font-weight: 600;
}
.rr-bank-details {
    list-style: none;
    padding: 15px 20px;
    margin: 20px 0;
    background: #1f1f1f;
    border-radius: 6px;
    border: 1px solid #3a3a3a;
}
.rr-bank-details li {
    font-size: 15px;
    color: #e0e0e0;
    padding: 10px 0;
    line-height: 1.4;
}
.rr-bank-details li + li {
    border-top: 1px solid #3a3a3a;
}
.rr-bank-details li strong {
    color: #ccc;
    display: inline-block;
    width: 120px;
    font-weight: 600;
}

/* --- 5.5 Mobil (Popup & Ödeme Kutusu) --- */
@media (max-width: 640px) {
    .rr-popup-inner {
        padding: 24px 20px;
    }
    .rr-bank-details li strong {
        display: block;
        width: auto;
        color: #ea580c;
        margin-bottom: 4px;
    }
    .rr-payment-info-box {
        /* Dashboard'un mobil stilini eziyor, margin ekliyoruz */
        margin-left: 15px;
        margin-right: 15px;
    }
}