/* Cookie Consent Styles */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #12141e;
  color: white;
  padding: 20px;
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: none;
  font-family: 'Segoe UI', Roboto, sans-serif;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.cookie-text h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #7ed957;
}

.cookie-text p {
  margin: 0 0 15px 0;
  line-height: 1.5;
}

.cookie-categories {
  margin: 15px 0;
}

.cookie-category {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.cookie-category input[type="checkbox"] {
  margin-right: 10px;
}

.cookie-category label {
  display: flex;
  align-items: center;
}

.cookie-category label span {
  font-size: 0.9em;
  color: #aaa;
  margin-left: 5px;
}

.cookie-category input[type="checkbox"]:disabled + label {
  color: #aaa;
}

.cookie-links {
  margin-top: 15px;
  font-size: 0.9em;
}

.cookie-links a {
  color: #7ed957;
  text-decoration: none;
  margin: 0 5px;
}

.cookie-links a:hover {
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  min-width: 120px;
}

.cookie-btn.accept {
  background: #7ed957;
  color: #000;
}

.cookie-btn.preferences {
  background: #555;
  color: #fff;
}

.cookie-btn.reject {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.cookie-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
  }
}

@media (max-width: 418px) {
  .cookie-content {
    padding: 10px;
  }
  .cookie-text h3 {
    font-size: 15px;
  }
  .cookie-text p {    
    font-size: 10px;
  }
  .cookie-categories {    
    font-size: 12px;
  }
  .cookie-btn {
    padding: 5px 10px;
  }
} 