.cookie-consent {
    font-size: 14px;
    position: fixed;
    z-index: 99999;
    background: #2d3748;
    color: white;
    padding: 20px;
    font-family: sans-serif;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-consent-bottom {
    bottom: 0;
    left: 0;
    right: 0;
}

.cookie-consent-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    //max-width: 1200px;
    margin: 0 auto;
}

.cookie-consent-message {
    flex: 1;
    margin-right: 20px;
    margin-bottom: 10px;
}

.cookie-consent-link {
    color: #63b3ed;
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
}

.cookie-consent-button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.cookie-consent-button--primary {
    background: #4299e1;
    color: white;
}

.cookie-consent-button--secondary {
    background: #718096;
    color: white;
}