.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    max-width: 1000px;
    margin: 43px auto;    
    /* max-width: 1000px;
    margin: 0 10px 7px 7px; */
}

.cookie-consent-text {
    flex-grow: 1;
    margin-right: 20px;
    font-size: 14px;
}

.cookie-consent-text a {
  color: #fff;
  text-decoration: underline;
}

.cookie-consent-button {
    background-color: #2F7AD6;
    color: white;
    border: none;
    padding: 8px 16px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
    white-space: nowrap;
}

.cookie-consent-button:hover {
    background-color: #6A98C1;
}

@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-text {
        margin-right: 0;
        margin-bottom: 10px;
    }
}