/* Container styling */
.cmplz-manage-consent-container {
    color: var(--ast-global-color-0, #0a1a3a);
    max-width: 600px;
    margin: 0 auto;
}

/* Category wrapper */
.cmplz-categories {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Individual category item */
.cmplz-category {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 4px 6px rgba(10, 26, 58, 0.05);
    transition: all 0.2s ease-in-out;
}

.cmplz-category:hover {
    box-shadow: 0 6px 12px rgba(10, 26, 58, 0.1);
    border-color: #cbd5e1;
}

/* Header layout */
.cmplz-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Category Title */
.cmplz-category-title {
    font-size: 16px;
    font-weight: 700;
    flex-grow: 1;
    color: var(--ast-global-color-0, #0a1a3a);
}

/* Checkbox container and label styling */
.cmplz-banner-checkbox {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.cmplz-banner-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--ast-global-color-0, #0a1a3a);
    margin-right: 8px;
}

/* Dimmed always active checkbox/label */
.cmplz-always-active {
    font-size: 13px;
    color: #94a3b8; /* Dimmed secondary color */
    opacity: 0.8;
    font-weight: 500;
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.cmplz-always-active input[type="checkbox"] {
    accent-color: var(--ast-global-color-0, #0a1a3a);
    opacity: 0.6;
}

/* Toggle chevron button */
.cmplz-category-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ast-global-color-0, #0a1a3a);
    transition: transform 0.2s ease;
}

.cmplz-category-toggle svg {
    fill: currentColor;
    width: 16px;
    height: 16px;
}

/* Rotate icon when open */
.cmplz-category-toggle[aria-expanded="true"] {
    transform: rotate(180deg);
}

/* Description area */
.cmplz-description {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
}