#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #d6d6d6;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 20px;
    box-sizing: border-box;
    z-index: 9999;
    gap: 16px;
}

#cookie-banner p {
    margin: 0;
    font-size: 12px;
    line-height: 1.4;
    color: #1a1a1a;
    flex: 1;
}

#cookie-banner a {
    color: #1a1a1a;
    text-decoration: underline;
}

#cookie-accept {
    flex-shrink: 0;
    padding: 5px 18px;
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
}

#cookie-accept:hover {
    background: rgba(0, 0, 0, 0.08);
}
