
/* Modal Tabs */
.modal-tabs {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 10px;
    margin-bottom: 15px;
}
.modal-tab {
    padding: 10px 15px;
    background: transparent;
    color: var(--text-secondary);
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: none;
}
.modal-tab.active {
    background: #eff6ff;
    color: #6366f1;
}
.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.3s ease; }

/* Group Members List in Modal */
.members-list {
    max-height: 300px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.member-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f9fafb;
    border-radius: 15px;
    border: 1px solid transparent;
}
.member-item:hover {
    border-color: var(--glass-border);
}
.member-info { flex: 1; }
.member-name { font-weight: 600; display: block; }
.member-role { font-size: 0.75rem; padding: 2px 8px; border-radius: 10px; background: #e5e7eb; color: var(--text-secondary); }
.member-role.admin { background: #dbeafe; color: #1d4ed8; }

.member-actions { display: flex; gap: 5px; }
.btn-mini {
    padding: 5px 10px;
    font-size: 0.8rem;
    border-radius: 8px;
    box-shadow: none;
}
.btn-mini.danger { background: #fee2e2; color: #ef4444; }
.btn-mini.danger:hover { background: #fecaca; }

/* Large Modal */
.modal-content.large {
    max-width: 600px;
}
