#mn-cookie-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    background: #1c1c1c;
    color: #f0f0f0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.4;
    padding: 12px 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.3);
}

#mn-cookie-bar a {
    color: #7ec8ff;
    text-decoration: underline;
}

#mn-cookie-bar .mn-cookie-text {
    max-width: 640px;
}

#mn-cookie-ok {
    background: #2e8b57;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    flex-shrink: 0;
}

#mn-cookie-ok:hover {
    background: #3aa76d;
}

@media (max-width: 480px) {
    #mn-cookie-bar {
        flex-direction: column;
        text-align: center;
    }
}
