/*adjuntos chat*/

.adjuntos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.adjunto-card {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    border: 1px solid #dee2e6;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    overflow: hidden;
    gap: 4px;
}

.adjunto-card:hover {
    border-color: #6c757d;
    background: #e9ecef;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.adjunto-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.adjunto-label {
    font-size: 10px;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.adjunto-imagen {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*Fin adjuntos*/