#cookie-banner {
    position: fixed;
    border: 1px solid red;
    top: 0;
    left: 65%;
    width: 30%;
    height: 50px%;
    background: #f4f4f4;
    color: #0A0000;
    padding: 16px;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif

}
#cookie-banner .text {
    margin: 0 0 8px;
}
#cookie-banner a {
    color: #1abc9c;
    text-decoration: underline;
}
#cookie-banner .actions {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}
#cookie-banner button {
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
#cookie-accept {
    background: #27ae60;
    color: #fff;
}
#cookie-decline {
    background: #7f8c8d;
    color: #fff;
}
#cookie-settings {
    background: #34495e;
    color: #fff;
}
