.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: var(--cc-bg, #fff);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 1.5rem;
    border-top: 3px solid var(--color-primary);
    color: var(--cc-text, #191000);
}

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

.cookie-consent-text {
    font-size: 0.95rem;
    line-height: 1.4;
}

.cookie-consent-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap;
    align-items: center;
}

.cookie-consent-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.7);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-consent-modal {
    background-color: var(--cc-bg, #fff);
    width: 95%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    border-radius: 8px;
    color: var(--cc-text, #191000);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.cc-modal-header {
    margin-bottom: 1.5rem;
}

.cc-modal-header h2 {
    margin: 0;
}

.cc-category {
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px solid var(--cc-border, #a8a8a8);
    border-radius: 4px;
}

.cc-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cc-category-title {
    font-weight: bold;
}

.cc-category-description {
    font-size: 0.85rem;
    color: #666;
}

.cc-modal-footer {
    margin-top: 2rem;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

/* Switches */
.cc-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 22px;
}

.cc-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cc-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 22px;
}

.cc-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .cc-slider {
  background-color: var(--color-success, #28a745);
}

input:checked + .cc-slider:before {
  transform: translateX(22px);
}

input:disabled + .cc-slider {
  background-color: #eee;
  cursor: not-allowed;
}

@media (max-width: 768px) {
    .cookie-consent-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .cookie-consent-actions {
        width: 100%;
        justify-content: flex-end;
    }
}
