#cookie-banner {
    z-index: 100;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background-color: #f8f9fa;
    color: #333;
    padding: 1em;
    text-align: left;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;

}

#cookie-banner p {
    margin-bottom: 1em;
    font-size: 14px;
    line-height: 1.5;
}

#cookie-banner .button-container {
    display: flex;
    justify-content: flex-end;
}

#cookie-banner .button-container button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-left: 0.5em;
}

#cookie-banner .button-container button:hover {
    background-color: #0056b3;
}
