#cookies__container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: black; 
  color: white;
  padding: 22px 5px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 100;
  text-align: center;
}

.cookies__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cookies__text {
  margin: 0;
  font-size: 16px; 
  display: -webkit-box;
  -webkit-line-clamp: 3; 
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cookies__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}

.cookies__link {
  padding: 10px 15px;
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
}

.cookies__link.btn.btn-link {
  background-color: transparent;
  border: 1px solid white;
  color: white;
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.cookies__link.btn.btn-link:hover {
  background-color: white;
  color: #333;
}

button#btnAcceptCookies {
  background-color: white; 
  color: #333;
  border: none;
  border-radius: 4px;
}

button#btnAcceptCookies:hover, button#btnAcceptCookies:active, button#btnAcceptCookies.active, button#btnAcceptCookies:focus, button#btnAcceptCookies:not(:disabled):not(.disabled).active:focus, button#btnAcceptCookies:not(:disabled):not(.disabled):active:focus, .show>button#btnAcceptCookies.dropdown-toggle:focus, button#btnAcceptCookies:not(:disabled):not(.disabled).active, button#btnAcceptCookies:not(:disabled):not(.disabled):active, .show>button#btnAcceptCookies.dropdown-toggle, button#btnAcceptCookies.disabled, button#btnAcceptCookies:disabled {
  background-color: #ff6969;
  color: white; 
}

#btnCloseCookies {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  line-height: 1;
  padding: 0;
  margin: 0;
}

/* Mobile Styles */
@media screen and (max-width: 991px) {
  .cookies__text {
    font-size: 14px; 
  }
}

/* Desktop Styles */
@media screen and (min-width: 992px) {
  #cookies__container {
    padding: 22px 20px;
    display: flex;
    justify-content: center;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
  }

  .cookies__container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px; 
    margin: 0 auto; 
  }

  .cookies__text {
    text-align: left;
    max-width: 60%;
    font-size: 16px;
    margin-right: 10px;
  }

  .cookies__buttons {
    flex-wrap: nowrap;
  }
}
