.cookie-notification {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);

    z-index: 999999;

    width: max-content;
    max-width: calc(100% - 32px);

    background: #252525;
    color: #f5f5f5;

    padding: 16px 18px;

    border-radius: 10px;

    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);

    box-sizing: border-box;

    font-family: Arial, sans-serif;
}

.cookie-notification__content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cookie-notification__text {
    max-width: 520px;

    color: #f1f1f1;

    font-size: 14px;
    line-height: 1.45;
}

.cookie-notification__button {
    flex-shrink: 0;

    padding: 9px 22px;

    border: 1px solid #555;
    border-radius: 6px;

    background: #3a3a3a;
    color: #fff;

    font-size: 14px;
    font-weight: 500;

    cursor: pointer;

    transition:
            background 0.2s ease,
            border-color 0.2s ease;
}

.cookie-notification__button:hover {
    background: #4a4a4a;
    border-color: #666;
}

@media (max-width: 600px) {

    .cookie-notification {
        bottom: 16px;
        max-width: calc(100% - 24px);
        width: calc(100% - 24px);
    }

    .cookie-notification__content {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .cookie-notification__text {
        max-width: none;
    }

    .cookie-notification__button {
        width: 100%;
    }
}