/* CSS Frontend simple - Affichage en ligne */
.interviews-lives-container {
    padding: 20px 0;
    max-width: 850px;
    margin: 0 auto;
}

.interviews-lives-container h2 {
    margin-bottom: 30px;
    color: #0a0a0a;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.interviews-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 15px;
}

.interview-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.interview-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: #ccc;
}

.interview-thumbnail {
    flex-shrink: 0;
    width: 240px;
    height: 180px;
    border-radius: 6px;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
}

.interview-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.password-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 11px;
}

.interview-content {
    flex: 1;
    min-width: 0;
}

.interview-content h3 {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 600;
    color: #070707;
    font-weight: 600;
    line-height: 1.3;
}

.interview-description {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
    margin: 0 0 12px 0;
    text-align: left;
}

.interview-password {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 8px 12px;
    border-radius: 4px;
    margin: 8px 0;
    font-size: 13px;
    display: inline-block;
}

.password-label {
    font-weight: 600;
    color: #495057;
    margin-right: 5px;
}

.password-value {
    font-family: 'Courier New', monospace;
    background: #e9ecef;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 600;
    color: #495057;
}

.interview-actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.interview-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #007cba;
    color: white !important;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.interview-link:hover {
    background: #005a87;
    color: white !important;
}

/* État vide */
.interviews-lives-container p {
    text-align: left;
    color: #666;
    font-size: 16px;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    margin: 20px 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .interviews-lives-container {
        padding: 15px 0;
    }
    
    .interviews-lives-container h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .interviews-grid {
        padding: 0 10px;
        gap: 15px;
    }
    
    .interview-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
        gap: 15px;
    }
    
    .interview-thumbnail {
        width: 100%;
        height: 160px;
        align-self: stretch;
    }
    
    .interview-content h3 {
        font-size: 16px;
    }
    
    .interview-actions {
        align-self: stretch;
    }
    
    .interview-link {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .interview-card {
        padding: 12px;
        gap: 12px;
    }
    
    .interview-thumbnail {
        height: 140px;
    }
    
    .interview-content h3 {
        font-size: 15px;
    }
    
    .interview-description {
        font-size: 13px;
    }
}

/* Amélioration de l'accessibilité */
.interview-link:focus {
    outline: 2px solid #007cba;
    outline-offset: 2px;
}

/* Animation douce lors du chargement */
.interview-card {
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Support pour les préférences de mouvement réduit */
@media (prefers-reduced-motion: reduce) {
    .interview-card {
        animation: none;
        transition: none;
    }
    
    .interview-link {
        transition: none;
    }
}