/* Zoom Recording Actions */
.rag-item__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.rag-item__info-btn {
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: var(--color-text-secondary);
}

.rag-item__info-btn:hover {
    background: var(--color-border-light);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.rag-item__badge--date {
    background: rgba(255, 149, 0, 0.12);
    color: var(--color-warning);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal__content {
    position: relative;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--color-border);
}

.modal__title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
}

.modal__close {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: var(--color-text-secondary);
    border-radius: 4px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal__close:hover {
    background: var(--color-border-light);
    color: var(--color-text);
}

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

.participants-count {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
    font-weight: 500;
}

.participants-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.participant-item {
    padding: 12px;
    background: var(--color-bg);
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border-light);
}

.participant-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 4px;
}

.participant-email {
    font-size: 13px;
    color: var(--color-text-secondary);
}

.no-participants {
    text-align: center;
    color: var(--color-text-secondary);
    padding: 40px 20px;
    font-size: 14px;
}