/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: space-between;
  height: 280px;
  padding: 20px 40px;
  gap: 80px;
}

.cookie-banner-top {
  display: none;
}

.cookie-banner-text {
  flex: 1;
  min-width: 300px;
}

.cookie-banner-text p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin: 0 0 10px 0;
}

.cookie-privacy-link {
  color: #00ABCC;
  text-decoration: none;
  font-size: 14px;
}

.cookie-privacy-link:hover {
  color: #00ABCC;
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.cookie-reject-btn {
  background: #fff;
  color: #00ABCC;
  border: 1px solid #00ABCC;
  border-radius: 50px;
  padding: 10px 40px;
}

.cookie-reject-btn:hover {
  background: #f0f9fa;
}

.cookie-accept-btn {
  background: #00ABCC;
  color: #fff;
  border-radius: 50px;
  padding: 10px 40px;
}

.cookie-accept-btn:hover {
  opacity: 0.8;
  color: #fff;
}

.cookie-close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  color: #00ABCC;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1070px) {
  .cookie-banner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    padding: 24px 20px 40px 20px;
    gap: 15px;
  }
  
  .cookie-banner-text {
    text-align: left;
    width: 100%;
    margin-top: 10px;
  }
  
  .cookie-banner-actions {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
  }
  
  .cookie-settings-link {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .cookie-reject-btn{
    padding: 10px 90px;
  }
  .cookie-accept-btn{
    padding: 12px 90px;
  }

  .cookie-close-btn {
    top: 1px;
  }
} 