body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

.cookie-modal {
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 300px;
    max-width: 90%;
    background-color: #333;
    color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    display: none;
}

.cookie-modal img {
    width: 80px;
    height: 80px;
}

.cookie-modal h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.cookie-modal p {
    text-align: center;
    margin-bottom: 20px;
    font-size: 0.9em;
}

.cookie-modal a {
    color: white;
}

#accept-cookie {
    background-color: wheat;
    color: black;
    border: none;
    padding: 10px 20px;
    margin: 5px 0;
    cursor: pointer;
    border-radius: 5px;
    width: 70%;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

#decline-cookie {
    color: white;
    border: none;
    text-align: center;
    padding: 10px 20px;
    margin: 5px 0;
    cursor: pointer;
    border-radius: 5px;
    width: 70%;
    font-size: 1em;
}

.cookie-modal .close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.2em;
    cursor: pointer;
}

@media (max-width: 600px) {
    .cookie-modal {
        left: 10px;
        /* Adjust alignment for smaller screens */
        right: 10px;
        /* Ensure it's centered on smaller screens */
        width: auto;
        max-width: 90%;
    }

    .cookie-modal img {
        width: 70px;
        height: 70px;
    }
}