.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 300px;
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 15px;
  z-index: 1000;
  font-size: 14px;
  line-height: 1.5;
  display: none;
  border: 1px solid #e5e7eb;
}

.cookie-banner p {
  margin: 0 0 12px 0;
  color: #333;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-accept {
  background-color: #4f46e5;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.2s;
  font-size: 14px;
}

.btn-accept:hover {
  background-color: #4338ca;
}

.btn-more {
  color: #6b7280;
  text-decoration: none;
  padding: 8px 0;
  font-size: 14px;
}

.btn-more:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .cookie-banner {
    bottom: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .btn-accept {
    width: 100%;
    text-align: center;
  }
}