/* Cookie Banner Main Layout */
.cc-window {
  display: flex !important;
  flex-direction: column;
  align-items: center !important;
  justify-content: center;
  text-align: center;
  padding: 1.5em;
  background-color: #fff8e7;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  border-top: 1px solid #ccc;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.05);
}

/* Button Styling */
#cc-allow,
#cc-deny {
  display: inline-block;
  padding: 0.6em 1.4em;
  font-weight: 600;
  font-size: 1em;
  border-radius: 6px;
  background-color: #5a2d2d;
  color: white;
  border: none;
  cursor: pointer;
  margin: 0.5em;
}

/* Optional: Adjust spacing individually if needed */
#cc-allow {
  margin-right: 5em !important;
}

#cc-deny {
  margin-right: 4em !important;
}

/* Link Styling */
.cc-link {
  color: #5a2d2d;
  text-decoration: underline;
}

/* Responsive Adjustment */
@media screen and (max-width: 768px) {
  .cc-window {
    padding: 1em;
  }

  #cc-allow,
  #cc-deny {
    width: 100%;
    margin: 0.3em 0;
  }
}
