/* Cookie consent banner styles */
#cookie-banner {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    background: rgba(0,0,0,0.95);
    color: #fff;
    padding: 20px;
    z-index: 9999;
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
#cookie-banner h3 { margin: 0 0 12px 0; font-size: 18px; }
#cookie-banner p { margin: 0 0 16px 0; font-size: 14px; line-height: 1.5; }
#cookie-banner a { color: #7db8ff; text-decoration: underline; }
#cookie-banner .category {
    margin: 12px 0;
    padding: 12px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
}
#cookie-banner .category label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
}
#cookie-banner .category input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}
#cookie-banner .category-description {
    font-size: 12px;
    color: #bbb;
    margin-left: 28px;
    margin-top: 4px;
}
#cookie-banner .buttons {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}
#cookie-banner button {
    background: #4a90e2;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    flex: 1;
}
#cookie-banner button:hover {
    background: #357abd;
}
#cookie-banner button.secondary {
    background: transparent;
    border: 2px solid #fff;
}
#cookie-banner button.secondary:hover {
    background: rgba(255,255,255,0.1);
}
@media(max-width:540px){
    #cookie-banner {
        left: 8px;
        right: 8px;
        padding: 16px;
    }
    #cookie-banner .buttons {
        flex-direction: column;
    }
}

