/* Seance Styles */
.seance-header {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 0.25rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.seance-title {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.seance-metadata {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.metadata-item {
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.metadata-item i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.card-seance {
    margin-bottom: 1.5rem;
    border: none;
    border-radius: 0.375rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.card-header-seance {
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    padding: 1rem 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.card-header-seance i {
    margin-right: 0.75rem;
    color: var(--primary-color);
}

.ordre-jour-content {
    background-color: #f8f9fa;
    border-radius: 0.25rem;
    padding: 1rem;
    white-space: pre-wrap;
    font-family: var(--font-family-base);
    line-height: 1.5;
}

.presence-table th {
    font-weight: 600;
    background-color: #f8f9fa;
}

.badge-present {
    background-color: var(--success-color);
    color: white;
    padding: 0.35em 0.65em;
    font-size: 0.75em;
    font-weight: 700;
    border-radius: 0.25rem;
}

.badge-absent {
    background-color: var(--danger-color);
    color: white;
    padding: 0.35em 0.65em;
    font-size: 0.75em;
    font-weight: 700;
    border-radius: 0.25rem;
}

.texte-item {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background-color 0.2s ease;
}

.texte-item:last-child {
    border-bottom: none;
}

.texte-item:hover {
    background-color: rgba(0, 0, 0, 0.01);
}

.texte-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.texte-link:hover {
    text-decoration: underline;
}

.seance-table {
    margin-bottom: 0;
}

.seance-table th {
    font-weight: 600;
    background-color: #f8f9fa;
    border-top: none;
}

.seance-table td {
    vertical-align: middle;
}

.badge-type {
    font-size: 0.75rem;
    padding: 0.35em 0.65em;
    border-radius: 0.25rem;
    font-weight: 600;
}

.badge-count {
    font-size: 0.75rem;
    padding: 0.35em 0.65em;
    border-radius: 0.25rem;
    background-color: var(--info-color);
    color: white;
}

.seance-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-action {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border-radius: 0.25rem;
}

.breadcrumb-container {
    margin-bottom: 1.5rem;
}

/* Plenary Session Management Styles */

/* Recording styles */
.blink {
    animation: blink 1s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        opacity: 1;
    }
}
.status-badges {
    display: flex;
    gap: 0.5rem;
}

.status-badge {
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
}

.live-badge {
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

.session-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.real-times {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    background-color: #f8f9fa;
    padding: 0.75rem;
    border-radius: 0.25rem;
    margin-top: 1rem;
}

.real-time-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.audio-recording-section,
.speaking-turn-section {
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 0.25rem;
    height: 100%;
}

.current-speaker-info {
    background-color: white;
}

.timer {
    font-family: monospace;
    font-size: 1.5rem;
    font-weight: bold;
    color: #dc3545;
    background-color: #f8f9fa;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .seance-metadata {
        flex-direction: column;
        gap: 0.5rem;
    }

    .seance-header {
        padding: 1rem;
    }

    .card-header-seance {
        padding: 0.75rem 1rem;
    }

    .session-controls {
        flex-direction: column;
    }

    .session-controls form {
        width: 100%;
    }

    .session-controls button {
        width: 100%;
    }

    .real-times {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Filter card mobile adjustments */
    .filter-card-header {
        padding: 0.75rem !important;
    }

    .filter-card-body {
        padding: 0.75rem !important;
    }

    .filter-form .form-group {
        margin-bottom: 0.75rem !important;
    }

    .filter-form label {
        margin-bottom: 0.25rem !important;
        font-size: 0.9rem;
    }

    .filter-actions {
        margin-top: 0.75rem !important;
        flex-direction: column;
        gap: 0.5rem !important;
    }

    .filter-actions .btn {
        width: 100%;
    }

    .date-range-container {
        flex-direction: column;
        gap: 0.75rem !important;
    }

    /* Reduce padding on mobile for filter form columns */
    .filter-form .row {
        margin-left: 0;
        margin-right: 0;
    }

    .filter-form .row > [class*='col-'] {
        padding-left: 0;
        padding-right: 0;
    }
}
