/* Membership Status Modal */
.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.custom-modal-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 350px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s ease-in-out;
}

.custom-modal-actions {
    margin-top: 20px;
    display: flex;
    justify-content: space-around;
}

.modal-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.modal-btn.danger {
    background-color: #d9534f;
    color: white;
}

.modal-btn:hover {
    opacity: 0.8;
}

/* Modal Fade In Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .custom-modal-content {
        width: 90%;
        max-width: 320px;
        padding: 15px;
    }
    
    .custom-modal-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .modal-btn {
        width: 100%;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .custom-modal-content {
        width: 95%;
        padding: 12px;
    }
    
    .modal-btn {
        font-size: 14px;
        padding: 10px 16px;
    }
}
