@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');

.t-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 15px 20px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 9999;
  text-align: center;
  font-family: 'Roboto', sans-serif;
}

.cookie-message {
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 1.4;
  color: #333;
}

.cookie-buttons {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.t-btn {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid #ddd;
  background: #f8f8f8;
  color: #333;
  transition: all 0.2s;
}

.t-btn:hover {
  background: #e8e8e8;
}

.t-cookie-settings {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 15px;
  width: 280px;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.15);
  z-index: 10000;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
}

.t-cookie-settings h3 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 14px;
  text-align: center;
}

.cookie-category {
  margin: 15px 0;
  position: relative;
}

.cookie-category label {
  display: block;
  cursor: pointer;
  padding-left: 25px;
}

.cookie-category input {
  position: absolute;
  left: 0;
  top: 2px;
  margin: 0;
}

.cookie-category strong {
  display: block;
  font-weight: 500;
}

.cookie-category span {
  display: block;
  font-size: 11px;
  color: #666;
  margin-top: 3px;
  line-height: 1.3;
}

#save-settings {
  margin-top: 15px;
  width: 100%;
}