#cookie-consent-acf-backdrop {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: block;
}
#cookie-consent-acf-modal {
  position: fixed;
  z-index: 9999;
  bottom: 1.3vw;
  inset-inline-end: 0.73vw;
  display: block;
  border-radius: 1.25vw;
  background: #fff;
  padding: 1.25vw;
  width: 100%;
  max-width: 29.06vw;
}
.cookie-consent-acf-content {
  display: flex;
  flex-direction: column;
}
.cookie-message {
  font-size: 0.83vw;
}
.cookie-message * {
  font-size: 0.83vw;
  line-height: 160%;
}
.cookie-message a {
  color: var(--cookie-link-color, #0073aa);
  text-decoration: underline;
  font-weight: 500;
}
#cookie-consent-acf-accept {
  margin-top: 0.83vw;
  padding: 0.68vw 1.25vw;
  border: none;
  border-radius: 100px;
  color: #fff;
  font-weight: 500;
  font-size: 0.94vw;
  cursor: pointer;
  transition: background 0.2s;
  max-width: fit-content;
}
@media screen and (max-width: 768px) {
  #cookie-consent-acf-modal {
    bottom: max(env(safe-area-inset-bottom, 0), 2.05vw);
    inset-inline-end: 2.05vw;
    inset-inline-start: 2.05vw;
    max-width: 95.9vw;
    border-radius: 6.15vw;
    padding: 5.13vw;
  }
  .cookie-message {
    font-size: 4.1vw;
  }
  .cookie-message * {
    font-size: 4.1vw;
  }
  #cookie-consent-acf-accept {
    margin-top: 4.1vw;
    font-size: 4.62vw;
    padding: 3.33vw 6.15vw;
  }
}

/*
Custom CSS Examples:
You can use the Custom CSS field in admin to override any styles above.

Example 1 - Change modal position to center:
#cookie-consent-acf-modal {
    bottom: 50%;
    right: 50%;
    transform: translate(50%, 50%);
    max-width: 400px;
}

Example 2 - Change modal background and border:
#cookie-consent-acf-modal {
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

Example 3 - Customize button styling:
#cookie-consent-acf-accept {
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

Example 4 - Add animation:
#cookie-consent-acf-modal {
    animation: slideIn 0.3s ease-out;
}
@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
*/
