  body,
  body * {
      font-family: 'Ubuntu', sans-serif !important;
  }

  .fas,
  .fab,
  .fa,
  .fa-solid,
  .fa-brands,
  .fa-regular,
  i[class^="fa"] {
      font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;

  }

  .card {
      margin-top: 20px;
  }

  .card-header {
      background-color: #f8f9fc;
      border-bottom: 1px solid #e3e6f0;
  }

  .list-group-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  /* Carpetas y documentos */
  .folder-item,
  .document-item {
      text-align: center;
      margin: 15px 0;
      cursor: pointer;
      padding: 10px;
      margin-bottom: 10px;
      position: relative;
  }

  /* Íconos */
  .folder-item i {
      font-size: 100px;
      color: #51AD32;
      display: block;
      margin-bottom: 10px;
  }

  .document-item i {
      font-size: 50px;
      color: #51AD32;
      display: block;
      margin-bottom: 10px;
  }

  /* Texto (nombre) */
  .folder-item a,
  .document-item a {
      font-size: 16px;
      color: #333;
      text-decoration: none;
  }

  .folder-item a:hover,
  .document-item a:hover {
      text-decoration: underline;
  }

  /* Selección */
  .selected {
      border: 2px solid #51ad32;
      border-radius: 10px;
      background-color: #f2fff2;
  }

  /* Estilo general para todos los botones de eliminación */
  .delete-btn {
      display: none;
      position: absolute;
      cursor: pointer;
      border: none;
      font-weight: bold;
      padding: 0;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      font-size: 25px;
      line-height: 22px;
      text-align: center;
      background-color: rgba(255, 255, 255, 0.9);
      color: #dc3545;
  }

  .resource-item.file .delete-btn i,
  .resource-item.document-item .delete-btn i {
      font-size: 20px;
  }

  .delete-btn i {
      font-size: 12px;
  }

  /* Archivos y documentos */
  .resource-item.file .delete-btn,
  .resource-item.document-item .delete-btn {
      top: 4px;
      right: 6px;
  }

  /* Carpetas */
  .resource-item.folder .delete-btn {
      top: -6px;
      right: -6px;
      width: 18px;
      height: 18px;
      font-size: 10px;
      line-height: 18px;
      background-color: #dc3545;
      color: white;
      /* Color del texto del botón */
  }


  .resource-item.folder .delete-btn i {
      color: white !important;
      font-size: 17px !important;
      margin-top: 8px !important;
  }

  /* Mostrar solo cuando está seleccionado */
  .resource-item.selected .delete-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
  }

  .contenedor-biblioteca {
    margin-top: 40px;  
    margin-left: 40px; 
}