body {
    padding-bottom: 60px; /* Adjust this value to match the height of the cookie notice */
}

#cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #000;
    color: #fff;
    padding: 15px;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    height: 60px; /* Ensure the height matches the padding added to the body */
}

#cookie-notice .cookie-notice-content {
    flex: 1;
    margin-right: 20px;
}

#cookie-notice .cookie-notice-buttons button {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 15px;
    margin-left: 10px;
    cursor: pointer;
    border-radius: 3px;
}

#cookie-notice .cookie-notice-buttons button:hover {
    background-color: #005177;
}