
div.document_file {
  width: 99%;
  height: inherit;
  align-items: center;
  margin: 5px auto;
  cursor: pointer;
  background: linear-gradient(270deg, rgba(211, 211, 211, 1) 0%, rgba(221, 221, 221, 1) 35%, rgba(255, 255, 255, 1) 100%);
  border-radius: 3px;
  box-shadow: -3px -3px 7px #ffffff73, 10px 10px 5px rgba(94, 104, 121, 0.288);
  display: flex;
  justify-content: flex-start;
  /* Статично подреждане на елементите */
  align-items: center;
  position: relative;
  /* Нужен за абсолютното позициониране на стрелката */
  padding-right: 30px;
  /* Оставяме място за стрелката в края */
}

.document_file-icon img {
  width: 50px;
  height: 50px;
}

.document_file-title {
  margin: 0;
  text-align: left;
  display: flex;
  flex-grow: 1;
}

.document_file-download i {
  font-size: 26px;
  transition: border 0.3s ease;
  /* Гладка анимация за рамката */
}

.document_file-download a {
  text-decoration: none;
  color: black;
}

.document_file-download {
  display: flex;
  justify-content: center;
  /* Центриране на иконата по хоризонтала */
  align-items: center;
  /* Центриране на иконата по вертикала */
  width: 45px;
  height: 40px;
  text-align: center;
  cursor: pointer;
  padding: 0px 10px;
  /* Добавяме курсор pointer за визуален ефект */
}

.document_file-download:hover {
  border: 2px solid #ffffff73;
  border-radius: 5px;
}

.document_file-download i {
  pointer-events: none;
  /* Оставяме иконата да не реагира на кликове, само контейнерът ще реагира */
}

.document_file-toggle {
  display: flex;
  justify-content: center;
  /* Центриране на бутона за toggle */
  align-items: center;
  height: 40px;
  position: absolute;
  /* Позиционираме стрелката абсолютно */
  right: 10px;
  /* Съответства на височината на .document-download */
}

.document_file-toggle button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
}

.document_file-active {
  font-size: 12px;
  text-align: right;
  width: 50%;
  display: inline;
  padding-right: 10px;
}

.doc_link_p {
	text-decoration: none;
}

.doc_link_p:hover {
	text-decoration: underline;
	color: #0056b3;
}

.doc_link {
	text-decoration: none;
	color: #7F7F7F;
}

.doc_link:hover {
	text-decoration: underline;
	color: #0056b3;
}


#cookie-banner {
	  position: fixed;
	  bottom: 20px;
	  left: 20px;
	  background: rgba(255, 255, 255, 0.1); /* по-силна прозрачност */
	  backdrop-filter: blur(10px); /* по-силно размазване зад банера */
	  color: #b5bfd5;
	  padding: 20px;
	  border-radius: 12px;
	  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
	  display: none;
	  flex-direction: column;
	  gap: 15px;
	  z-index: 9999;
	  max-width: 350px;
	  font-family: sans-serif;
	  animation: slideUp 0.4s ease-out;
	  // border: 1px solid #d2d2d2;
	}

	  @keyframes slideUp {
		from { opacity: 0; transform: translateY(20px); }
		to { opacity: 1; transform: translateY(0); }
	  }

	  #cookie-banner p {
		margin: 0;
		font-size: 14px;
		line-height: 1.4;
	  }

	  #cookie-buttons {
		display: flex;
		gap: 10px;
		justify-content: flex-end;
		flex-wrap: wrap;
	  }

	  #cookie-buttons button {
		padding: 6px 12px;
		border: none;
		border-radius: 6px;
		cursor: pointer;
		font-weight: bold;
		font-size: 13px;
	  }

	  #accept {
		background-color: #4caf50;
		color: white;
	  }

	  #decline {
		background-color: #f44336;
		color: white;
	  }

	  a {
		color: #0066cc;
		text-decoration: underline;
	  }