﻿/* ==========================================
   SUPPORT MODAL - BADGES
========================================== */
.section-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 30px;
}

.suggestions-badge, .complaints-badge {
    background: #eef0f8;
    color: #210645;
}

/* ==========================================
   SUPPORT MODAL - CARDS
========================================== */
.modern-support-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    padding: 16px 20px;
    border-radius: 14px;
    border: 1px solid #eaeaea;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

    .modern-support-card.link-card {
        text-decoration: none;
        color: inherit;
    }

        .modern-support-card.link-card:hover {
            border-color: #210645;
            box-shadow: 0 4px 15px rgba(33, 6, 69, 0.06);
            transform: translateY(-2px);
        }

            .modern-support-card.link-card:hover .popup-arrow-go {
                color: #210645;
                transform: translateX(-4px);
            }

.card-right-side {
    display: flex;
    align-items: center;
    gap: 16px;
}

.popup-icon-box {
    width: 44px;
    height: 44px;
    background-color: #f3f0f7;
    color: #210645;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 18px;
}

.card-details {
    display: flex;
    flex-column: column;
    display: grid;
}

.card-label {
    font-size: 12px;
    color: #8c8c8c;
    font-weight: 500;
}

.card-value {
    font-size: 15px;
    font-weight: 600;
    color: #2d2d2d !important;
}

.btn-copy-action {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    color: #666;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
}

    .btn-copy-action:hover {
        background: #210645;
        color: #fff;
        border-color: #210645;
    }

.popup-arrow-go {
    color: #bbb;
    font-size: 22px;
    transition: 0.2s;
}
