/* Estilos específicos para los bloques de documentos */
.documento-block {
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.documento-block:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.documento-titulo {
    color: #2a5885;
    font-weight: 600;
}

.documento-descripcion {
    color: #555;
    font-size: 0.95rem;
}

.documento-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

/* Modo oscuro */
[data-bs-theme="dark"] .documento-block {
    background-color: #212529 !important;
    border-color: #343a40 !important;
}

[data-bs-theme="dark"] .documento-titulo {
    color: #8ab4f8;
}

[data-bs-theme="dark"] .documento-descripcion {
    color: #adb5bd;
}

/* Adaptación para móviles */
@media (max-width: 576px) {
    .documento-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .documento-actions .btn + .btn {
        margin-left: 0 !important;
        margin-top: 0.5rem;
    }
}
