
.membershipmodal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Inter', sans-serif;
}

.membershipmodal {
    background: #ffffff;
    width: 620px;
    max-width: 90%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.membershipmodal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 20px;
    background: #efefef;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.membershipmodal-header h2 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    font-family: system-ui;
}

.membershipCLOSE-btn {
    background: none;
    border: none;
    font-size: 35px;
    cursor: pointer;
    color: #333;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}


.membershipmodal-body {
    padding: 20px;
}

.membershipmodal table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid gainsboro;
}

.membershipmodal thead th {
    font-size: 13px;
    text-align: left;
    color: #555;
    padding: 12px 10px;
    border-bottom: 1px solid #ddd;
    font-family: system-ui;
    background-color: #f9fafb;
}

.membershipmodal tbody td {
    padding: 12px 10px;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

.membershipmodal tbody tr:nth-child(odd) {
    background-color: #fafbfc;
}

.membershipmodal tbody td:first-child {
    font-weight: 600;
    color: #585454;
}

/* Responsive */
@media (max-width: 768px) {
    .membershipmodal {
        width: 95%;
    }
    
    .membershipmodal table {
        font-size: 12px;
    }
    
    .membershipmodal thead th,
    .membershipmodal tbody td {
        padding: 8px 6px;
        font-size: 12px;
    }
}