#dev-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(33, 33, 33, 0.95);
  color: #fff;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

#dev-cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.dev-cookie-content {
  flex: 1;
}

.dev-cookie-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 6px 0;
}

.dev-cookie-text {
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  opacity: 0.9;
}

.dev-cookie-buttons {
  display: flex;
  gap: 12px;
  margin-left: 24px;
}

.dev-cookie-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.accept-all-btn {
  background: var(--primary, #4361ee);
  color: white;
}

.reject-all-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: white;
}

.settings-btn {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.dev-cookie-btn:hover {
  transform: translateY(-2px);
}

.dev-cookie-notice {
  position: absolute;
  top: -24px;
  left: 24px;
  background: #ff9800;
  color: #333;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 4px 4px 0 0;
  font-weight: bold;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

@media (max-width: 768px) {
  #dev-cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 16px;
  }

  .dev-cookie-content {
    margin-bottom: 16px;
  }

  .dev-cookie-buttons {
    margin-left: 0;
  }

  .dev-cookie-notice {
    left: 50%;
    transform: translateX(-50%);
  }
}