.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    color: white;
    padding: 14px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

#cookie-ok-btn {
    background: #322f78;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

    #cookie-ok-btn:hover {
        background: #1d4ed8;
    }

.cookie-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}
