/* For cookie accept */

.cookie-banner {
  position: fixed;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 24px;
  width: 320px;
  z-index: 9999;
  font-family: Arial, sans-serif;
  border: 1px solid #e0e0e0;
}

.cookie-banner h3 {
  margin-top: 0;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.cookie-banner p {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}

.cookie-banner a {
  color: #1a73e8;
  text-decoration: none;
  font-weight: 500;
}

/* Buton kapsayici */
.cookie-buttons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

/* Ortak buton stili */
.cookie-buttons button {
  flex: auto;
  max-width: 100%;
  font-size: 14px;
  font-family: inherit;
  line-height: 24px;
  padding: 8px;
  font-weight: 500;
  border-radius: 2px;
  cursor: pointer;
  text-align: center;
  text-transform: none;
  min-height: 0;
  overflow-wrap: break-word;
  transition: all 0.2s ease;
}

/* Kabul Et */
.cookie-accept {
  background: #1863dc;
  color: #ffffff;
  border: 2px solid #1863dc;
}

/* Reddet */
.cookie-reject {
  color: #1863dc;
  background: transparent;
  border: 2px solid #1863dc;
}

.cookie-accept:hover,
.cookie-reject:hover {
  opacity: 0.9;
}