#cc-settings-modal {
  position: fixed;
  background: rgba(0, 0, 0, 0.85);
  background: #222;
  color: #fefefe;
  top: 1rem;
  right: 1rem;
  left: 1rem;
  bottom: 1rem;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: Helvetica, Calibri, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  max-width: 50rem;
  margin: 0 auto;
  z-index: 9999;
  flex-direction: column;
  justify-content: space-between;
}
.cc-modal-content {
  color: #fefefe;
  overflow-y: auto;
  padding: 2rem;
  width: 100%;
}
#cc-modal-title {
  color: #fefefe;
}
.cc-cookie-table {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.cc-cookie-table.open {
  opacity: 1;
  max-height: 50rem;
}
.cc-category {
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #444;
}
.cc-category:last-child {
  border: none;
  margin: 0;
}
.cc-category .cc-category-heading {
  display: flex;
  color: #fefefe;
  margin-bottom: 0.5rem;
  justify-content: space-between;
  align-items: center;
}
.cc-category .cc-category-heading input {
  margin: 0 12px 0 0;
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
}
.cc-category .cc-category-heading label {
  color: #fefefe;
  font-size: 1rem;
  margin: 0;
}
.cc-category .cc-category-heading .cc-expand,
.cc-category .cc-category-heading span {
  color: #fefefe;
  font-size: 2.25rem;
  margin: 0;
  width: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}
.cc-modal-footer {
  display: flex;
  flex-direction: row;
  padding: 1rem;
  flex-wrap: wrap;
  align-items: flex-end;
  align-content: flex-end;
  border-top: 1px solid rgb(72, 72, 72);
}
.cc-modal-footer button.cc-btn {
  margin: 0.25rem 1%;
  border: none;
  color: #fefefe;
  padding: 0.75rem 0.8rem;
  background: #333;
  flex: 0 48%;
}
.cc-modal-footer button.cc-btn:hover,
.cc-highlight button.cc-btn:first-child:hover {
  background: rgb(72, 72, 72);
  text-decoration: none;
}
.cc-window .cc-message {
  margin-bottom: 0 !important;
}
.cc-window .cc-message button.cc-settings {
  margin: 0.75rem auto 0.25rem;
}
.cc-window button.cc-btn,
.cc-highlight button.cc-btn:first-child {
  padding: 0.7rem 0.8rem;
  margin: 0.25rem;
  background: #222;
}
.cc-window a.cc-btn {
  background-color: #222;
}
.cc-window a.cc-link {
  opacity: 1;
}
.cc-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: none;
}
.cc-modal-backdrop.show {
  display: block;
}

.cc-revoke[tabindex="0"]:focus,
.cc-revoke[tabindex="0"]:focus-visible {
  outline: 2px solid #0078d4; /* deine Wunschfarbe */
  outline-offset: 2px;
  /* Optional für mehr Barrierefreiheit: */
  box-shadow: 0 0 0 3px rgba(0,120,212,0.3);
}
