/* manager-card.css */
.manager-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.manager-modal__container {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.manager-modal__header {
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.manager-modal__close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.manager-modal__tabs {
    display: flex;
    border-bottom: 1px solid #e5e7eb;
    gap: 4px;
    padding: 0 8px;
}

.manager-tab {
    padding: 12px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.manager-tab:hover {
    background: #f3f4f6;
}

.manager-tab.active {
    border-bottom-color: #4f46e5;
    color: #4f46e5;
}

.manager-modal__content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.manager-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.manager-badge {
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
}

.manager-badge.active {
    background: #d1fae5;
    color: #065f46;
}

.manager-badge.blocked {
    background: #fee2e2;
    color: #991b1b;
}
