/**
 * Simple Cookie Consent CSS
 * Styles for the cookie consent banner
 */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #6d41a1;
  color: #ffffff;
  text-align: center;
  padding: 15px 10px;
  border-top: 1px solid #6d41a1;
  z-index: 1000;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  box-shadow: 0 -2px 5px rgba(255, 255, 255, 0.2);
}

#accept-cookie {
  margin-left: 10px;
  padding: 8px 16px;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: inherit;
  transition: background-color 0.3s;
}

#accept-cookie:hover {
  background: #444;
}

@media (max-width: 768px) {
  #cookie-banner {
    padding: 10px 5px;
    font-size: 14px;
  }
  
  #accept-cookie {
    padding: 6px 12px;
  }
}