.friend_payment_wrapper {
    margin-top: 12px;
}

.payment_friend_button {
    background: #74C4FF;
    border: none;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
}

.payment_friend_button:hover {
    background: #5ab5f7;
}

.payment_friend_button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.friend_payment_loader {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
}

.friend_payment_spinner {
    width: 20px;
    height: 20px;
    border: 3px solid #e0e0e0;
    border-top-color: #74C4FF;
    border-radius: 50%;
    animation: friend-spin 0.8s linear infinite;
}

@keyframes friend-spin {
    to {
        transform: rotate(360deg);
    }
}

.friend_payment_block {
    margin-top: 18px;
    max-width: 520px;
}

.friend_info {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    border: 1px solid #f0f0f0;
    text-align: center;
}

.friend_info_title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.friend_info_subtitle {
    font-size: 16px;
    margin-bottom: 12px;
}

.friend_more_link {
    color: #74C4FF;
    font-weight: 600;
    text-decoration: none;
}

.friend_more_link:hover {
    text-decoration: underline;
}

.friend_more_text {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.4;
}

.friend_ok_btn {
    margin-top: 16px;
    width: 100%;
    background: #74C4FF;
    padding: 12px;
    border-radius: 12px;
    border: none;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.friend_ok_btn:hover {
    background: #5ab5f7;
}

.friend_loader_text {
    color: #74C4FF;
    font-weight: 600;
}