#cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: #1c1c1c;
    color: white;
    padding: 20px;
    z-index: 1000;
    transition: bottom 0.5s ease;
}

#cookie-banner.active {
    bottom: 0;
}

.toggle-switch {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
}

.toggle-switch input {
    width: 50px;
    height: 24px;
    position: relative;
    appearance: none;
    background: #ccc;
    outline: none;
    border-radius: 30px;
    transition: 0.4s;
}

.toggle-switch input:checked {
    background: #4caf50;
}
