.cookie-consent-modal {
    position: fixed;
    /*left: 50%;*/
    /*bottom: 20px;*/
    bottom: 20px;
    right: 20px;

    /*transform: translateX(-50%);*/
    background-color: #f9f9f9;
    padding: 15px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
    font-size: 14px;
    font-family: Arial, sans-serif;
}

.cookie-consent-content p {
    margin: 0 0 10px 0;
    text-align: center;
    color: #333;
}

.cookie-consent-modal button {
    margin-top: 10px;
    padding: 5px 15px;
    border: none;
    border-radius: 3px;
    background-color: #007BFF;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#rejectCookies {
    background-color: #6c757d;
}

.cookie-consent-modal button:hover {
    background-color: #0056b3;
}

#rejectCookies:hover {
    background-color: #545b62;
}
