/* Estilos para el componente de Adjuntos */

.avatar-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
}

.file-card {
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.file-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.file-icon {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-preview {
    cursor: pointer;
    transition: opacity 0.2s;
}

.file-preview:hover {
    opacity: 0.7;
}

.email-body {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 15px;
    max-height: 400px;
    overflow-y: auto;
}

.accordion-button:not(.collapsed) {
    background-color: #e7f1ff;
    color: #0c63e4;
}

.accordion-item {
    margin-bottom: 8px;
    border-radius: 4px;
    overflow: hidden;
}



