﻿/* Popup'a özel kapsamlı stiller */
#DonatePopup .modal-dialog {
    max-width: 520px;
    margin: 80px auto;
}

#DonatePopup .modal-content {
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: none;
    overflow: hidden;
}

#DonatePopup .modal-header {
    background: linear-gradient(135deg, #007bff, #6610f2);
    color: #fff;
    text-align: center;
    padding: 1.2rem 1.5rem;
}

#DonatePopup .modal-title {
    font-weight: 600;
    font-size: 1.25rem;
    text-transform: uppercase;
}

#DonatePopup .modal-body {
    padding: 2rem 2rem;
    background-color: #f9fafc;
}

/* --- Form yapısı --- */
#DonatePopup .form-horizontal {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#DonatePopup .form-group {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    width: 90%;
    gap: 12px;
}

#DonatePopup .control-label {
    flex: 0 0 35%; /* Daha az sağa yaslanır */
    text-align: right;
    font-weight: 600;
    font-size: 1.05rem; /* Yazı biraz daha büyük */
    color: #222;
}

#DonatePopup .network-note {
    font-size: 0.9em;
    color: #777;
    font-weight: normal;
    margin-left: 4px;
}

/* --- Input ve butonlar --- */
#DonatePopup .input-group {
    flex: 0 0 55%;
    display: flex;
    align-items: center;
}

#DonatePopup #btcAddress,
#DonatePopup #bttcAddress,
#DonatePopup #tetherAddress {
    border: 1px solid #ced4da;
    border-radius: 6px 0 0 6px;
    padding: 0.65rem 0.8rem;
    width: 100%;
    font-size: 1rem; /* Yazı biraz daha büyük */
    background: #fff;
    transition: all 0.2s ease;
}

    #DonatePopup #btcAddress:focus,
    #DonatePopup #bttcAddress:focus,
    #DonatePopup #tetherAddress:focus {
        border-color: #80bdff;
        box-shadow: 0 0 6px rgba(0, 123, 255, 0.25);
    }

#DonatePopup .btn {
    border-radius: 0 6px 6px 0;
    background: #007bff;
    color: #fff;
    border: none;
    padding: 0.65rem 0.9rem;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

    #DonatePopup .btn:hover {
        background: #0056b3;
    }
