#payment-selection-container {
    font-family: 'Montserrat', sans-serif;
}

/* Ensure the modal dialog is centered and has spacing around it */
.payment-modal .modal-dialog {
    margin: 30px auto; /* Spacing on top/bottom */
    display: flex;
    align-items: center;
    min-height: calc(100% - 60px);
    max-width: 600px; /* Slimmed down slightly for better centering look */
}

/* Modal Custom Styling */
.payment-modal .modal-content {
    background-color: #0b1121;
    color: #ffffff;
    border: 2px solid #d4af37;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0,0,0,0.8);
    position: relative;
}

.payment-modal .modal-header {
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 25px;
    position: relative;
}

.payment-modal .modal-title {
    font-weight: 700;
    color: #d4af37;
    letter-spacing: 1px;
    font-size: 1rem;
}

/* Custom Close Button */
.btn-close-custom {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    right: 25px;
    top: 22px;
}

.btn-close-custom:hover {
    background: #d4af37;
    border-color: #d4af37;
    color: #0b1121;
}

/* Toggle Switch Styling */
.plan-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px;
    border-radius: 50px;
    width: fit-content;
    margin: 5px auto 25px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.plan-toggle .toggle-btn {
    padding: 8px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #a1a1a1;
    font-size: 0.9rem;
}

.plan-toggle .toggle-btn.active {
    background-color: #d4af37;
    color: #0b1121;
}

/* Card Styling */
.payment-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.payment-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: #d4af37;
}

.btn-payment {
    background: #d4af37;
    color: #0b1121;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    padding: 10px;
    border-radius: 8px;
    width: 100%;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.btn-payment:hover {
    background: #f1c40f;
    color: #0b1121;
}

.savings-badge {
    background: #27ae60;
    color: white;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 5px;
    text-transform: uppercase;
}
#paymentMethodModal {
    z-index: 9999;
}

.payment-icon-box {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #d4af37;
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-icon-box svg {
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}
