/* Cookie Banner Styles */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #222;
    color: #fff;
    padding: 15px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

#cookie-banner a {
    color: #9cdbff;
    text-decoration: none;
}

#cookie-banner a:hover {
    text-decoration: underline;
}

#cookie-banner button {
    background: #007acc;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s;
}

#cookie-banner button:hover {
    background: #005a9e;
}

#cookie-banner #cookie-accept {
    margin-right: 10px;
    background: #28a745;
}

#cookie-banner #cookie-accept:hover {
    background: #218838;
}

#cookie-banner #cookie-reject {
    margin-right: 10px;
    background: #dc3545;
}

#cookie-banner #cookie-reject:hover {
    background: #c82333;
}

#cookie-banner #cookie-manage {
    background: #6c757d;
}

#cookie-banner #cookie-manage:hover {
    background: #5a6268;
}
EOF < /dev/null
