body{
    background: #9C9C9B;
}
/* Root styles */
.cookiescan_bottom_adjust {
    font-family: Arial, sans-serif;
    background: #fff;
    padding: 20px;
    max-width: 100%;
    border-top: 1px solid #ccc;
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
}

/* Header */
.cookiescan_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    margin-bottom: 20px;
}
.cookiescan_close {
    font-size: 0.9rem;
    cursor: pointer;
}

/* Sections */
.cookiescan_sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.cookiescan_section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    padding-bottom: 8px;
}
.cookiescan_label {
    flex: 1;
    font-size: 0.95rem;
}
.cookiescan_view {
    border: 1px solid #ccc;
    background: transparent;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    margin-right: 10px;
    cursor: pointer;
}

/* Toggle Switch */
.cookiescan_switch {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 18px;
}
.cookiescan_switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.cookiescan_slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}
.cookiescan_slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
.cookiescan_switch input:checked + .cookiescan_slider {
    background-color: #6aa84f;
}
.cookiescan_switch input:checked + .cookiescan_slider:before {
    transform: translateX(16px);
}

/* Footer */
.cookiescan_footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}
.cookiescan_language select {
    border: 1px solid #ccc;
    padding: 5px 8px;
    border-radius: 4px;
}
.cookiescan_save {
    background: #6aa84f;
    color: white;
    padding: 10px 18px;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
}
