/* COOKIE BANNER */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.92);
    color: #fff;
    padding: 25px 20px;
    display: none;
    z-index: 999999;
    font-family: Arial, sans-serif;
    border-top: 2px solid #4fa3ff;
}

#cookie-banner .text {
    max-width: 800px;
    line-height: 1.6;
    font-size: 15px;
}

#cookie-banner .btns {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    border: none;
}

.cookie-accept {
    background: #4fa3ff;
    color: #fff;
}

.cookie-essential {
    background: #2c2c2c;
    color: #fff;
}

.cookie-settings {
    background: #111;
    border: 1px solid #4fa3ff;
    color: #4fa3ff;
}

/* SETTINGS PANEL */
#cookie-settings-panel {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 350px;
    background: #000;
    border-left: 2px solid #4fa3ff;
    border-top: 2px solid #4fa3ff;
    padding: 20px;
    display: none;
    z-index: 9999999;
}

#cookie-settings-panel h3 {
    margin-top: 0;
}

.settings-option {
    margin-bottom: 15px;
}

.settings-option label {
    cursor: pointer;
}

.settings-save {
    margin-top: 15px;
    width: 100%;
    padding: 10px;
    background: #4fa3ff;
    border: none;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
}
