#document-library-wrapper {  font-family: 'DM Sans', Helvetica, Arial, Lucida, sans-serif; margin:20px 0; }

.doc-item { display:flex; justify-content:space-between; align-items:center; padding:12px 15px; border:1px solid #ddd; border-radius:6px; background:#f9f9f9; margin-bottom:8px; transition: background 0.2s; }
.doc-item:hover { background:#f1f1f1; }
.doc-info { display:flex; flex-direction:column; }
.doc-title { margin:0; font-size:20px; font-weight:500; color:#000000; }
.doc-category { font-size:16px; color:#555; }

.doc-download { 
	text-decoration:none; 
	color:#d0021b; 
	font-weight:500; 
	display:flex; 
	align-items:center; gap:5px;     
	padding: 8px 20px;
    border-radius: 4px;
}
.doc-download:hover {     
	color: #ffffff;
    background: #d0021b; 
}

.dl-pagination {     
	margin-top: 30px;
    display: flex; 
}
.dl-pagination a, .dl-pagination span { 
    display: flex;
    padding: 4px 8px;
    margin: 0 2px;
    border: 1px solid #ccc;
    border-radius: 8px;
    text-decoration: none;
    color: #d0021b;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.dl-pagination a:hover { background-color:#d0021b; color:#fff; }
.dl-pagination .current {
    background-color: #d0021b;
    color: #fff;
    border-color: #d0021b;
}

.doc-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #f9f9f9;
    margin-bottom: 8px;
	font-family: 'DM Sans', Helvetica, Arial, Lucida, sans-serif; 
    transition: background 0.2s;
}

.doc-item:hover { background:#f1f1f1; }
.doc-item-info {
    display: flex;
}
.doc-icon-custom {
    margin-right: 10px;
    display: flex;
    align-items: center;
}

.doc-icon-custom svg {
    width: 50px;
    height: 50px;
}

.dl-filters { display:flex; gap:10px; flex-wrap:wrap; margin-bottom:40px; }
.dl-filters button { 
	padding: 4px 28px;
    background-color: #b3b3b3;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
}
.dl-filters button:hover { 
	background-color:#d0021b; 
}

#document-library-wrapper .dl-filters input {
  font-size: 20px;
  color: #222222;
  cursor: pointer;
  width: 30%;
  padding: 10px 15px 10px 40px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  transition: all 0.2s ease;
  background-color: #fff;

  /* Icono de lupa como background */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'><path d='M16.32 14.9l5.39 5.4a1 1 0 0 1-1.42 1.4l-5.38-5.38a8 8 0 1 1 1.41-1.41zM10 16a6 6 0 1 0 0-12 6 6 0 0 0 0 12z' fill='%23888888'/></svg>");
  background-repeat: no-repeat;
  background-size: 18px;
  background-position: 12px center;
}

#document-library-wrapper .dl-filters select{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px 40px 10px 15px;
  font-size: 18px;
  color: #333;
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease;
  background-image: url("data:image/svg+xml;utf8,<svg fill='gray' height='20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 8l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}
