.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: #1f1f1f;
    color: #fff;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    font-family: inherit;
}

.cookie-banner__text {
    line-height: 1.4;
}

.cookie-banner__text a {
    color: #9fd3ff;
    text-decoration: underline;
}

.cookie-banner__buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.cookie-banner button {
    cursor: pointer;
    border: none;
    border-radius: 6px;
    padding: 10px 18px;
    font-size: 14px;
    white-space: nowrap;
}

#cookie-accept-all {
    background: #4caf50;
    color: #fff;
}

#cookie-accept-all:hover {
    background: #43a047;
}

#cookie-accept-necessary {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

#cookie-accept-necessary:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 600px) {
    .cookie-banner__buttons {
        width: 100%;
    }
    .cookie-banner button {
        flex: 1;
    }
}